/* =====================================================
   CONTACT SECTION
===================================================== */

.section-contact {
    padding: 50px 0;
    background: #ffffff;
}

.section-contact .container {
    max-width: 1400px;
}


/* =====================================================
   LAYOUT
===================================================== */

.contact-grid {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 80px;
    align-items: start;
}



/* =====================================================
   LEFT COLUMN
===================================================== */

.contact-information {
    display: flex;
    flex-direction: column;
}

.contact-information .section-eyebrow {
    margin-bottom: 14px;
}

.contact-information .page-section-title {
    margin-bottom: 40px;
    margin-left: 15px;
}

.contact-intro {
    margin-bottom: 40px;
}

.contact-intro p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   CONTACT ITEMS
===================================================== */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;

    padding: 32px 0;

    border-top: 1px solid #e6e9ef;
}

.contact-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.contact-item:last-child {
    padding-bottom: 0;
}


/* =====================================================
   ICONS
===================================================== */

.contact-icon {
    flex-shrink: 0;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #f7f8fa;

    color: #b18024;

    font-size: 1.8rem;

    transition: all .3s ease;
}


/* =====================================================
   CONTENT
===================================================== */

.contact-content {
    flex: 1;
}

.contact-content h3 {
    margin: 0 0 10px;

    color: #051f45;

    font-size: 1.35rem;

    font-weight: 700;
}

.contact-content p,
.contact-content a,
.office-address {
    margin: 0;

    color: #5a6178;

    font-size: 1.05rem;

    line-height: 1.8;

    text-decoration: none;
}

.contact-content a {
    transition: color .25s ease;
}

.office-address p:last-child {
    margin-bottom: 0;
}


/* =====================================================
   CONSULTATION
===================================================== */

.consultation-text {
    margin-bottom: 18px;
}

.consultation-text p:last-child {
    margin-bottom: 0;
}

.consultation-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #051f45;

    font-weight: 700;

    text-decoration: none;

    transition: all .25s ease;
}

.consultation-link:hover {
    color: #b18024;
    gap: 12px;
}


/* =====================================================
   FORM CARD
===================================================== */

.contact-form-card {
    background: #ffffff;
    padding: 10px 50px 20px;

    border: 1px solid #e6e9ef;

    border-radius: 12px;

    box-shadow:
        0 12px 35px rgba(5,31,69,.08);
}

.contact-form-card h2 {
    margin-bottom: 18px;

    color: #051f45;
}

.form-intro {
    margin-bottom: 32px;
}

.form-intro p:last-child {
    margin-bottom: 0;
}

.contact-form {
    margin-top: 12px;
}


/* =====================================================
   WPFORMS
===================================================== */

.contact-form-card .wpforms-container {
    margin: 0 !important;
}

.contact-form-card .wpforms-field {
    margin-bottom: 24px !important;
}

.contact-form-card .wpforms-field-label {
    margin-bottom: 8px !important;

    color: #051f45;

    font-size: .95rem;

    font-weight: 700;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
    width: 100%;

    padding: 14px 16px !important;

    border: 1px solid #d8dde6 !important;

    border-radius: 6px !important;

    background: #ffffff !important;

    color: #051f45;

    font-size: 1rem !important;

    transition:
        border-color .25s ease,
        box-shadow .25s ease;
}

.contact-form-card textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
    border-color: #b18024 !important;

    box-shadow: 0 0 0 3px rgba(177,128,36,.15);

    outline: none;
}


/* =====================================================
   SUBMIT BUTTON
===================================================== */

.contact-form-card .wpforms-submit {
    background: #051f45 !important;

    color: #ffffff !important;

    border: none !important;

    border-radius: 6px !important;

    padding: 16px 34px !important;

    font-size: 1rem !important;

    font-weight: 700 !important;

    transition: all .25s ease;
}

.contact-form-card .wpforms-submit:hover {
    background: #b18024 !important;

    transform: translateY(-2px);
}


/* =====================================================
   CONFIRMATION
===================================================== */

.wpforms-confirmation-container {
    background: #f5f9f5;

    border-left: 4px solid #2e7d32;

    padding: 18px;

    border-radius: 6px;
}

.wpforms-error {
    color: #c62828 !important;
}


