.page-banner {
    background-color: #454646;
    background-image: url('assets/img/backgrounds/contact-banner.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 110px 0 80px;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12,10,12,0.62);
}

.page-banner__content {
    position: relative;
    z-index: 2;
}

.page-banner__title {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-banner__title span {
    color: #b0ce5a;
}

.breadcrumb-wrap {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 8px;
}

.breadcrumb-wrap li {
    color: rgba(255,255,255,0.65);
    font-size: 13px;
}

.breadcrumb-wrap li a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
}

.breadcrumb-wrap li a:hover {
    color: #b0ce5a;
}

.breadcrumb-wrap li+li::before {
    content: '›';
    margin-right: 8px;
}

.contact-info-card {
    background: #f5f5f5;
    padding: 36px 30px;
    border-top: 4px solid #b0ce5a;
    margin-bottom: 30px;
}

.contact-info-card__icon {
    font-size: 32px;
    color: #b0ce5a;
    margin-bottom: 16px;
}

.contact-info-card__title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #454646;
    margin-bottom: 8px;
}

.contact-info-card__text {
    color: #555;
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
}

.contact-info-card__text a {
    color: #555;
    text-decoration: none;
}

.contact-info-card__text a:hover {
    color: #b0ce5a;
}

.contact-form-area {
    background: #fff;
    padding: 80px 0;
}

.contact-form .form-control {
    border: 1px solid #dcdfdf;
    border-radius: 0;
    padding: 12px 16px;
    font-size: 14px;
    color: #454646;
    background: #f9f9f9;
    height: auto;
}

.contact-form .form-control:focus {
    border-color: #b0ce5a;
    box-shadow: none;
    background: #fff;
}

.contact-form label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #454646;
    margin-bottom: 6px;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

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

.form-submit-btn {
    background: #b0ce5a;
    color: #454646;
    border: 2px solid #b0ce5a;
    padding: 14px 40px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit-btn:hover {
    background: #454646;
    border-color: #454646;
    color: #fff;
}

/* =============================================================
   CONTACT HERO — image framing
   Shares the headquarters photo used on the Locations page
   (1921x1081). In a hero roughly 540px tall, object-fit: cover
   shows only the middle band, which centred ends around 83% down
   the image and clips the "Corporation" line of the signage.
   Shifting object-position down to 80% moves the visible window to
   roughly 27-93%, bringing the full lockup into frame. A percentage
   is used rather than a pixel offset so the framing holds as the
   hero height changes across breakpoints.
   Scoped by virtue of contact.css loading on this page only.
   ============================================================= */
.ph-hero__img-bg {
    object-position: center 80%;
}

/* =============================================================
   CONTACT FORM — submit feedback, subject hint, honeypot
   ============================================================= */
.contact-alert {
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.7;
    border-radius: 4px;
}

.contact-alert--success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.contact-alert--error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.contact-alert a {
    color: inherit;
    text-decoration: underline;
}

.contact-form__hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #6b6b6b;
}

/* Bot trap: off-screen rather than display:none so headless fillers still see it. */
.contact-form__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
