/* CSS for Contact Page */

/* Header & Breadcrumb (Reusing from Recruit/Company style) */
.contact-header {
    background-color: #f5f8fa;
    padding: 120px 0 60px;
    text-align: left;
}

.contact-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Hero Logo */
.contact-hero-wrapper {
    text-align: center;
    padding-bottom: 20px;
}

.contact-hero-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-hero-logo .logo-mark {
    color: #004d99;
    font-size: 80px;
    line-height: 1;
    font-weight: bold;
}

.contact-hero-logo .logo-text {
    color: #000;
    font-size: 80px;
    line-height: 1;
    font-weight: bold;
}

/* Section Titles */
.contact-section-title {
    font-size: 28px;
    /* --- EDIT HEADING FONT WEIGHT HERE --- */
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    /* --- EDIT HEADING COLOR HERE --- */
    color: #444;
    /* Lighter than #333 */
}

/* Introduction Text */
.contact-intro {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    /* Lighter than #111 */
    font-weight: normal;
}

/* Form Styles */
.contact-form-section {
    padding: 60px 0 100px;
    background-color: #f5f8fa;
    /* Light background for the form area */
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    align-items: center;
    /* Vertically center label and input */
    margin-bottom: 20px;
}

/* Label styling */
.form-label {
    width: 200px;
    /* Fixed width for labels */
    flex-shrink: 0;
    /* --- EDIT LABEL FONT WEIGHT HERE --- */
    font-weight: bold;
    /* --- EDIT LABEL COLOR HERE --- */
    color: #444;
    /* Lighter (was #111) */
    font-size: 16px;
    margin-right: 20px;
}

/* Align label to top for textareas */
.form-group-textarea {
    align-items: flex-start !important;
}

.form-group-textarea .form-label {
    padding-top: 15px !important;
    /* Adjusted to match input padding + border */
    line-height: 1 !important;
}

/* Input styling */
.form-input,
.form-textarea {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background-color: #f0f2f5;
    /* Light grey input background */
    color: #333;
    line-height: 1.5;
}

.form-textarea {
    resize: vertical;
}

/* Checkbox specific */
/* Checkbox specific */
.checkbox-group {
    display: flex;
    justify-content: flex-start;
    /* Left align */
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 0;
    /* Removed padding, using spacer instead */
}

.checkbox-label {
    display: flex !important;
    align-items: center !important;
    cursor: pointer;
    font-size: 16px;
    gap: 10px !important;
    line-height: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0 !important;
    cursor: pointer;
    display: block;
}

.privacy-link {
    color: #333;
    text-decoration: underline;
    margin-right: 5px;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

/* Contact Page Button Override */
.contact-form .btn-primary {
    border-radius: 6px;
    /* Less curved */
    padding: 15px 80px;
    /* --- EDIT BUTTON COLOR HERE --- */
    background-color: #004177;
    /* --- EDIT BUTTON FONT SIZE HERE --- */
    font-size: 20px;
    /* Removing default border/outline */
    border: none;
    outline: none;
}

.contact-form .btn-primary::after {
    content: none;
}

/* Hiding Duplicate Contact CTA */
#contact-cta {
    display: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-header {
        padding: 100px 0 40px;
    }

    /* Resize Hero Logo */
    .contact-hero-logo {
        gap: 10px;
    }

    .contact-hero-logo .logo-mark,
    .contact-hero-logo .logo-text {
        font-size: 40px;
    }

    .contact-intro {
        text-align: left;
        font-size: 14px;
    }

    /* Stack form labels and inputs */
    .form-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-label {
        width: 100%;
        margin-bottom: 10px;
    }

    .form-input,
    .form-textarea {
        width: 100%;
    }

    .checkbox-group {
        padding-left: 0;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}