/* ===================================
   Block: Contact
   =================================== */
#dd-contact {
    background-color: var(--txt-light);
    float: left;
    width: 100%;
}
p.gform_required_legend {
    display: none;
}
.contact-wrap {
    align-items: stretch;
}

/* Left — full-height image */
.contact-left {
    width: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

/* Right — form */
.contact-right {
    width: 50%;
    padding-top: 70px;
    padding-bottom: 60px;
    padding-left: 70px;
    display: flex;
    flex-direction: column;
    gap: 36px;
	border-bottom: 1px solid #C8D9EE;
}

/* Title */
.contact-title {
    font-size: 38px;
    font-weight: 500;
    line-height: 54px;
    color: var(--main);
    margin: 0;
}

/* Gravity Forms overrides */
.contact-form-wrap .gform_wrapper {
    margin: 0;
}

.contact-form-wrap .gfield_label {
    font-size: 14px;
    font-weight: 500;
    color: var(--main);
    margin-bottom: 8px;
}

.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap input[type="number"],
.contact-form-wrap textarea {
    width: 100%;
    border: 1px solid #C8D9EE;
    border-radius: 0;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 300;
    color: var(--main);
    background-color: var(--txt-light);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
	font-family: 'Sora', sans-serif;
}

.contact-form-wrap input[type="text"]:focus,
.contact-form-wrap input[type="email"]:focus,
.contact-form-wrap input[type="tel"]:focus,
.contact-form-wrap textarea:focus {
    border-color: var(--main);
    outline: none;
}

.contact-form-wrap textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form-wrap .gform_footer,
.contact-form-wrap .gform_page_footer {
    margin-top: 10px;
    padding: 0;
}

.contact-form-wrap .gform_button,
.contact-form-wrap input[type="submit"] {
    background-color: var(--cta);
    color: var(--main);
    border: none;
    width: 200px;
    height: 60px;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	font-family: 'Sora', sans-serif;
}

.contact-form-wrap .gform_button:hover,
.contact-form-wrap input[type="submit"]:hover {
    background-color: var(--cta-hover);
}

.contact-form-wrap .gfield {
    margin-bottom: 20px;
}

/* ===================================
   Responsive
   =================================== */
@media screen and (max-width: 1400px) {
    .contact-title {
        font-size: 32px;
        line-height: 46px;
    }

    .contact-right {
        padding-left: 50px;
    }
}

@media screen and (max-width: 1199px) {
    .contact-title {
        font-size: 28px;
        line-height: 40px;
    }

    .contact-right {
        padding-left: 40px;
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media screen and (max-width: 991px) {
    .contact-wrap {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left {
        height: 320px;
    }

    .contact-right {
        padding: 50px 30px;
    }
}

@media screen and (max-width: 767px) {
    .contact-title {
        font-size: 26px;
        line-height: 36px;
    }

    .contact-left {
        height: 260px;
    }

    .contact-right {
        padding: 40px 20px;
        gap: 24px;
    }
}
