/* ============================================================ */
/* CONTACT PAGE STYLES                                          */
/* ============================================================ */

body {
    padding: 0px;
}

/* ---- Page wrapper ---- */
.contact-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--gray-100);
}

/* ============================================================ */
/* HERO                                                          */
/* ============================================================ */
.contact-hero {
    position: relative;
    /* background: linear-gradient(140deg, #0773f5 0%, #0047cc 60%, #003399 100%); */
    background: var(--theme-bg);
    overflow: hidden;
}

/* Decorative glow blob */
/* .contact-hero::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.10) 0%, transparent 65%);
    pointer-events: none;
} */

/* Arch cut — same colour as body background so cards "pop out" of the hero */
/* .contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    right: -5%;
    height: 72px;
    background: var(--gray-100);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
} */

.contact-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 72rem;
    margin: 0 auto;
    text-align: center;
}

.contact-logo {
    height: 4rem;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
}

.contact-hero h1 {
    color: #fff;
    margin: 0.75rem 0 0.5rem;
}

.contact-hero p.contact-hero-subtitle {
    color: rgba(255, 255, 255, 0.82);
    max-width: 30rem;
    margin: 0 auto;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ============================================================ */
/* BODY / GRID                                                   */
/* ============================================================ */
.contact-body {
    flex: 1;
    position: relative;
    z-index: 2;
    margin-top: -3rem;
}

/* ============================================================ */
/* INFO CARD (blue themed — extends the hero)                    */
/* ============================================================ */
.contact-info-card {
    /* background: linear-gradient(160deg, #0563dd 0%, #003fa3 100%); */
    background: var(--theme-bg);
    box-shadow: 0 12px 40px rgba(0, 50, 150, 0.30);
    position: sticky;
    top: 1.5rem;
}

/* Override base .card white text-color defaults */
.contact-info-card h2 {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
}

.contact-info-card hr {
    border-color: rgba(255, 255, 255, 0.18);
    margin: 1.25rem 0;
}

/* Contact rows */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

/* Reset browser <p> margin so labels and values sit tight */
.contact-info-item p {
    margin: 0;
    line-height: 1.5;
}

.contact-info-item .ci-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.15rem;
}

.contact-info-item .ci-value {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.92);
}

.contact-info-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-top: 0.15rem;
}

.contact-info-icon svg {
    width: 1.0625rem;
    height: 1.0625rem;
}

/* Quick links section */
.contact-quick-links-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.625rem;
}

.contact-quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    padding: 0.375rem 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.15s, color 0.15s;
}

.contact-quick-link::before {
    content: '→';
    font-size: 0.75rem;
    opacity: 0.6;
    transition: opacity 0.15s;
}

.contact-quick-link:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    opacity: 1;
}

.contact-quick-link:hover::before {
    opacity: 1;
}

/* ============================================================ */
/* FORM CARD                                                     */
/* ============================================================ */
.contact-form-header {
    border-bottom: 2px solid var(--gray-100);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.contact-form-header h2 {
    margin: 0 0 0.25rem;
    color: var(--gray-800);
}

.contact-form-header p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* Consent block */
.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    background-color: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
}

.contact-consent input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    accent-color: var(--theme-bg);
}

.address {
    display: none;
}

/* Char counter */
.contact-char-counter {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: right;
    margin: -0.875rem 0 1rem;
}

/* Submit button */
#contact-submit-btn {
    background-color: var(--theme-bg);
    border: none;
    color: #fff;
    padding: 0.65rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    width: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.2s;
    box-shadow: 0 4px 14px rgba(2, 126, 255, 0.35);
}

#contact-submit-btn:hover {
    opacity: 0.87;
}

#contact-submit-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

/* ============================================================ */
/* FOOTER STRIP                                                  */
/* ============================================================ */
.contact-footer-strip {
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 1rem;
    text-align: center;
    margin-top: 2.5rem;
}

/* ============================================================ */
/* RESPONSIVE                                                    */
/* ============================================================ */
@media (max-width: 1024px) {
    .contact-info-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 2.5rem 1rem 6.5rem;
    }
}