/* --- CONTACT PAGE STYLES --- */

/* Utility class for accessibility (WAVE compliance) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.contact-page-layout {
    max-width: 800px; 
    margin: 0 auto;
    text-align: left;
}

/* Header Image */
.contact-main-img {
    width: 100%;
    height: auto;
    border-radius: 0 !important;
    margin-bottom: 30px;
}

/* Intro Text */
.contact-intro-text {
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* Form Section Titles (1. Appointment Preferences & 2. Personal Details) */
.form-section-title {
    font-size: 15px !important;
    font-weight: bold !important;
    color: #0073a5 !important; /* Forced Dark Blue for contrast */
    text-transform: uppercase;
    margin: 30px 0 15px 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

/* INPUTS: Light Blue Background and Dark Blue Text */
.contact-input-field {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    background-color: #F3FCFF !important; /* Brand Light Blue */
    border: 1px solid #ddecff;
    color: #0073a5 !important; /* Forced Dark Blue for readability */
    font-family: Arial, sans-serif;
    font-size: 15px;
    box-sizing: border-box;
    border-radius: 0; 
}

/* Accessible Placeholder Color */
.contact-input-field::placeholder {
    color: #0073a5 !important; 
    opacity: 0.8;
}

/* Row for Date and Radio Buttons */
.date-time-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.date-input {
    width: 200px !important;
    margin-bottom: 0;
}

.time-radio-group {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #555;
}

/* SENT BUTTON */
.btn-sent-form {
    background-color: #0073a5 !important;
    color: #ffffff !important;
    border: none;
    padding: 12px;
    width: 220px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* FOOTER SUBSCRIBE BUTTON */
.btn-subscribe {
    background-color: #0073a5 !important;
    color: #ffffff !important;
    border: none;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    width: 220px;
}
/* FOOTER */
.site-footer, .copyright, .legal-links-left a, .legal-links-right a {
    color: #333333 !important; 
}
