/* =============================================================================
   CONTACT US PAGE
   ============================================================================= */

/* PAGE HERO */
.contact-hero {
    padding: 72px 40px 56px;
    text-align: center;
    border-bottom: 1px solid #E8ECEF;
}
.contact-hero h1 {
    font-size: 24px;
    line-height: 1.1;
}
.contact-hero p {
    margin-top: 16px;
    font-size: 16px;
    font-weight: 400;
    color: #3A3F3E;
    line-height: 1.6;
}

/* MAIN LAYOUT */
.contact-body {
    max-width: 1120px;
    margin: 0 auto;
    padding: 72px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* LEFT: GET IN TOUCH */
.contact-info .section-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #58C2B5;
    margin-bottom: 32px;
}

.contact-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E8ECEF;
}
.contact-block:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-block-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #E8F6F4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon svg {
    width: 16px;
    height: 16px;
    stroke: #58C2B5;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-block-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #282D2C;
}

.contact-primary {
    font-size: 22px;
    font-weight: 700;
    color: #282D2C;
    letter-spacing: -0.2px;
    margin-bottom: 4px;
}
.contact-primary a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.contact-primary a:hover {
    color: #58C2B5;
}
.contact-sub {
    font-size: 13px;
    font-weight: 400;
    color: #BCC6CC;
    letter-spacing: 0.2px;
    line-height: 1.5;
}
.contact-sub a {
    color: #58C2B5;
    text-decoration: none;
}
.contact-sub a:hover {
    text-decoration: underline;
}

/* hours pill */
.hours-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E8F6F4;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #58C2B5;
    letter-spacing: 0.3px;
    margin-top: 8px;
    white-space: nowrap;
}
.hours-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #58C2B5;
    flex-shrink: 0;
}

/* address block */
.address-text {
    font-size: 15px;
    font-weight: 400;
    color: #3A3F3E;
    line-height: 1.7;
}

/* RIGHT: FORM */
.contact-form-section h2 {
    font-size: 22px;
    margin-bottom: 8px;
}
.contact-form-section > p {
    font-size: 14px;
    color: #3A3F3E;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contact-form-group {
    margin-bottom: 20px;
}
.contact-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #282D2C;
    margin-bottom: 8px;
}
.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    color: #282D2C;
    background: #F5F7F8;
    border: 1px solid #E8ECEF;
    border-radius: 8px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
    border-color: #58C2B5;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(88, 194, 181, 0.12);
}
.contact-form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.tb-contact-cta {
    display: inline-block;
    background-color: #58C2B5;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease, opacity 0.2s ease;
    width: 100%;
    text-align: center;
}
.tb-contact-cta:hover {
    background-color: #4AB0A4;
    transform: translateY(-1px);
}
.tb-contact-cta:active {
    transform: translateY(0);
}
.tb-contact-cta:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* reCAPTCHA - ensure challenge popup is not clipped */
.contact-form-group .g-recaptcha {
    overflow: visible;
}
.contact-form-section {
    overflow: visible;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-hero { padding: 48px 24px 40px; }
    .contact-body {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 48px 24px;
        overflow: visible;
    }
    .contact-form-group .g-recaptcha {
        transform: scale(0.9);
        transform-origin: 0 0;
    }
}
