/*=========================================
Page Banner (shared - About / Services / Contact)
=========================================*/
.page-banner {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.85) 100%);
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px 60px;
}

.banner-content h1 {
    font-family: "Arimo", sans-serif;
    font-size: 68px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 22px;
    max-width: 1100px;
}

.banner-content p {
    font-size: 24px;
    font-weight: 400;
    color: #f0f0f0;
    line-height: 1.5;
    max-width: 800px;
}

/*=========================================
Contact Form Section
=========================================*/
.form-container {
    width: 100%;
    max-width: 100%;
}

.contact-form-section {
    padding: 0 0 90px;
    background: #f7f7f8;
}

.contact-form-section .container {
    margin: auto;
    padding: 0;
}

/*=========================================
Top CTA Bar
=========================================*/

.cta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 40px 40px;
    background: linear-gradient(90deg, #7b3c39, #21367d);
    /* border-radius: 0 0 14px 14px; */
    margin-bottom: 40px;
}

.cta-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.cta-text p {
    font-size: 14px;
    color: #eee;
    font-weight: 300;
}

.btn-call-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: .3s;
}

.btn-call:hover {
    color: #000;
    background: rgba(255, 255, 255, .15);
}

.container {
    max-width: 1700px;
    padding: 0 50px;
}

/*=========================================
Main Grid
=========================================*/

.contact-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    /* gap: 30px; */
    align-items: flex-start;
    width: 90%;
    margin: auto;
}

/*=========================================
Left - Info
=========================================*/

.contact-info {
    /* background: #fff; */
    border-radius: 14px;
    padding: 0;
    margin-left: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 26px;
}

.info-block-main {
    margin-bottom: 22px;
}

.info-label {
    display: block;
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
}

.info-value {
    font-size: 17px;
    font-weight: 700;
    color: #1f1f1f;
    text-decoration: none;
    display: block;
}

.info-value.underline {
    text-decoration: underline;
}

/*=========================================
Map
=========================================*/

.map-embed {
    width: 100%;
    height: 190px;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 10px;
}

.map-embed iframe {
    display: block;
}

/*=========================================
Right - Form
=========================================*/

.contact-form-wrap {
    border: 1.5px solid #000000;
    border-radius: 14px;
    padding: 15px 20px;
    margin: 1%;
}

.contact-form-wrap h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 6px;
}

.form-subtext {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.contact-request-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    font-family: inherit;
    outline: none;
    transition: .25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #21367d;
}

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

/*=========================================
Checkbox
=========================================*/

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #21367d;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: #333;
    cursor: pointer;
}

/*=========================================
Submit Button
=========================================*/

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 6px;
    background: linear-gradient(90deg, #21367d, #7b3c39);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 6px;
    transition: .3s;
}

.btn-submit:hover {
    opacity: .9;
}

/*=========================================
Responsive
=========================================*/

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .cta-bar {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
}