/* =========================================================================
   Contact Us page styles
   Composes existing tokens + components from hdt.css. Only adds what's
   genuinely new (form layout, info cards, alert states).
   ========================================================================= */

/* -- Hero overrides (image already set inline as a background) -------- */
.contact-hero .hero-bg {
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
}
.contact-crumb {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b8b8b8;
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
}
.contact-crumb a { color: #b8b8b8; text-decoration: none; }
.contact-crumb a:hover { color: #fff; }
.contact-crumb__current { color: #d71920; font-weight: 700; }

.contact-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.contact-hero__chips span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}
.contact-hero__chips svg { width: 16px; height: 16px; fill: #d71920; }

/* -- Quick contact strip (3 cards under hero) ------------------------- */
.contact-quick {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: -52px;
    position: relative;
    z-index: 2;
    margin-bottom: 64px;
}
.contact-quick__card {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    padding: 28px 26px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contact-quick__card .eyebrow {
    color: #d71920;
    font-size: 11px;
    margin: 0;
}
.contact-quick__card h3 {
    font-family: 'Roboto Condensed', 'Inter', sans-serif;
    font-weight: 800;
    font-size: 22px;
    line-height: 1.18;
    margin: 4px 0 6px;
    color: #111;
    word-break: break-word;
}
.contact-quick__card p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.55;
}
.contact-quick__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff5f5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}
.contact-quick__icon svg { width: 24px; height: 24px; fill: #d71920; }
.contact-quick__cta {
    margin-top: auto;
    color: #111;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.04em;
    padding-top: 10px;
}
.contact-quick__cta:hover { color: #d71920; }

/* -- Main two-column (form + side info) ------------------------------- */
.contact-main {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 36px;
    margin-bottom: 72px;
    align-items: flex-start;
}

.contact-form-wrap .section-head { margin-bottom: 22px; }
.contact-form-wrap .section-head h2 {
    font-family: 'Roboto Condensed', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(28px, 3vw, 38px);
    margin: 0;
}

.contact-form {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    padding: 28px 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    letter-spacing: 0.02em;
}
.contact-form label span { display: inline-flex; gap: 4px; }
.contact-form label em { color: #d71920; font-style: normal; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: #111;
    transition: border-color 0.15s, box-shadow 0.15s;
    width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #d71920;
    box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.15);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form__full { width: 100%; }

.contact-form__submit {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.contact-form__submit small {
    color: #666;
    font-size: 12.5px;
    line-height: 1.5;
}
.contact-form__submit button {
    border: 0;
    cursor: pointer;
}

.contact-form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* -- Alerts (success / error) ----------------------------------------- */
.contact-alert {
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    line-height: 1.55;
}
.contact-alert strong { display: block; font-weight: 800; margin-bottom: 4px; }
.contact-alert p { margin: 0; }
.contact-alert ul { margin: 6px 0 0; padding-left: 22px; }
.contact-alert--ok {
    background: #e8f7eb;
    border: 1px solid #88c69a;
    color: #1f5b30;
}
.contact-alert--ok a { color: #1f5b30; font-weight: 700; }
.contact-alert--err {
    background: #fdecec;
    border: 1px solid #e6a3a6;
    color: #8c1f24;
}

/* -- Side info column ------------------------------------------------- */
.contact-side {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 100px;
}
.contact-side__card {
    border-radius: 14px;
    padding: 26px 26px 24px;
    border: 1px solid #d9d9d9;
    background: #fff;
}
.contact-side__card .eyebrow {
    color: #d71920;
    font-size: 11px;
    margin: 0 0 8px;
}
.contact-side__card h3 {
    font-family: 'Roboto Condensed', 'Inter', sans-serif;
    font-weight: 900;
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 14px;
}
.contact-side__card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.contact-side__card--dark {
    background: #111;
    color: #fff;
    border-color: #111;
}
.contact-side__card--dark .eyebrow,
.contact-side__card--dark h3 { color: #fff; }
.contact-side__card--dark h3 { color: #fff; }
.contact-side__card--dark ul li {
    color: #d4d4d4;
    font-size: 14.5px;
    line-height: 1.55;
    padding-left: 18px;
    position: relative;
}
.contact-side__card--dark ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    background: #d71920;
    border-radius: 50%;
}
.contact-side__card--dark ul li strong { color: #fff; font-weight: 800; }
.contact-side__card--dark .btn { margin-top: 18px; display: inline-block; }

.contact-side__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: #1a1a1a;
}
.contact-side__list svg {
    width: 22px;
    height: 22px;
    fill: #d71920;
    flex-shrink: 0;
}

/* -- Capability strip (matches homepage) ------------------------------ */
.contact-capability { margin-bottom: 64px; }

/* -- FAQ grid --------------------------------------------------------- */
.contact-faq { margin-bottom: 72px; }
.contact-faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.contact-faq details {
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 14px 18px;
    transition: box-shadow 0.15s, border-color 0.15s;
}
.contact-faq details[open] {
    border-color: #b6b6b6;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.contact-faq summary {
    list-style: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 15.5px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: 8px;
}
.contact-faq summary::-webkit-details-marker { display: none; }
.contact-faq summary::before {
    content: "+";
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #d71920;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-faq details[open] summary::before { content: "−"; }
.contact-faq details p {
    margin: 12px 0 4px 38px;
    color: #444;
    font-size: 14.5px;
    line-height: 1.6;
}

/* -- Final CTA band (matches blog/footer pattern) --------------------- */
.contact-final-cta {
    background: #2b2b2b;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-final-cta::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    background: #d71920;
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
    z-index: 0;
}
.contact-final-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    padding: 36px 24px;
}
.contact-final-cta h2 {
    font-family: 'Roboto Condensed', 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 2.6vw, 32px);
    margin: 0 0 4px;
}
.contact-final-cta p { margin: 0; color: #d4d4d4; font-size: 15px; }
.contact-final-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.contact-final-cta .btn-light {
    background: #fff;
    color: #111;
    border: 0;
    padding: 14px 22px;
    border-radius: 4px;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 13px;
    text-decoration: none;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1100px) {
    .contact-quick { grid-template-columns: 1fr; margin-top: -32px; }
    .contact-main { grid-template-columns: 1fr; }
    .contact-side { position: static; }
    .contact-faq__grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    .contact-form__row { grid-template-columns: 1fr; }
    .contact-final-cta::after { display: none; }
    .contact-final-cta__inner { grid-template-columns: 1fr; }
}
