/* ===== CONTACT PAGE ===== */
html {
    background-image: url(images/satelliteSW2.png);
    background-size: 7em;
}

.CONTENTBODY {
	background-color: #f7f7f7;
}

.egps-contact {
    margin-top: 0.3em;
}

.egps-contact-address {
    margin-bottom: 1em;
}

.egps-contact-address-label {
    margin-bottom: 0.25em;
    font-weight: bold;
    color: #004170;
}

.egps-contact-company {
    margin-bottom: 0.2em;
    font-size: 1.1em;
    font-weight: bold;
    color: #00497d;
}

.egps-contact-addr {
    font-size: 1em;
    line-height: 1.35em;
}

.egps-contact-subject {
    background-color: #a8ffa8 !important;
}

.egps-contact-intro {
    margin: 1.4em 0 0.5em 0 !important;
    font-size: 1em;
    color: #00497d;
}

/* ===== FORM ===== */
.egps-contact-form {
    background-color: #e3e9f7;
    border: 1px solid #d9e0ee;
    border-radius: 0.5em;
    padding: 1.25em 1.5em 1.25em 1.5em;
    margin-top: 0.5em;
    box-sizing: border-box;
}

.egps-contact-field {
    margin-bottom: 0.9em;
}

.egps-contact-field label {
    display: block;
    margin-bottom: 0.3em;
    font-size: 0.85em;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: #00497d;
    text-transform: uppercase;
}

.egps-contact-field input[type="text"],
.egps-contact-field input[type="email"],
.egps-contact-field input[type="tel"],
.egps-contact-field select,
.egps-contact-field textarea {
    width: 100%;
    padding: 0.55em 0.75em;
    border: 1px solid #c8d2e4;
    border-radius: 0.3em;
    background-color: #fff;
    font-family: inherit;
    font-size: 1em;
    color: #333;
    box-sizing: border-box;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.egps-contact-field input:focus,
.egps-contact-field select:focus,
.egps-contact-field textarea:focus {
    outline: none;
    border-color: #004170;
    box-shadow: 0 0 0 2px rgba(0, 65, 112, 0.15);
}

.egps-contact-field textarea {
    resize: vertical;
    min-height: 7em;
    line-height: 1.4em;
}

/* ===== SUBMIT ROW ===== */
.egps-contact-submit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1em;
    margin-top: 0.6em;
}

.egps-contact-error {
    color: #c50400;
    font-weight: bold;
    font-size: 0.9em;
    text-align: left;
    flex: 1;
}

.egps-contact-btn {
    display: inline-block;
    padding: 0.65em 1.75em;
    background-color: #004170;
    color: #fff !important;
    border: 2px solid #004170;
    border-radius: 0.3em;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background-color 0.18s ease, box-shadow 0.18s ease;
}

.egps-contact-btn:hover {
    background-color: #005a9a !important;
    color: #fff !important;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.22);
}

/* ===== THANK-YOU PANEL ===== */
.egps-contact-thanks {
    margin-top: 1em;
    padding: 1.5em 1em;
    background-color: #e6f4e6;
    border: 1px solid #b6dab4;
    border-left: 0.3em solid #2e8b2a;
    border-radius: 0.3em;
    color: #1f5a1c;
    text-align: center;
}

.egps-contact-thanks-icon {
    font-size: 2.5em;
    line-height: 1em;
    color: #2e8b2a;
    margin-bottom: 0.1em;
}

.egps-contact-thanks h3 {
    margin: 0.1em 0 0.3em 0;
    font-size: 1.25em;
    color: #1f5a1c;
}

.egps-contact-thanks p {
    margin: 0;
    font-size: 1.05em;
}

/* ===== RESPONSIVE ===== */
@media only screen and (max-width: 530px) {
    .egps-contact-form {
        padding: 1em 1em 1em 1em;
    }

    .egps-contact-submit {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5em;
    }

    .egps-contact-btn {
        width: 100%;
        text-align: center;
    }

    .egps-contact-error {
        text-align: center;
    }
}
