/* Contact Us Page Styles */

/* Hero Section */
.contact_hero_section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact_hero_content {
    padding-right: 20px;
}

.contact_hero_title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact_hero_description {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 32px;
}

.woulib_logo_section {
    margin-bottom: 32px;
}

.woulib_logo {
    max-width: 180px;
    height: auto;
}

.contact_illustration {
    margin-top: 24px;
}

.contact_illustration img {
    max-width: 100%;
    height: auto;
}

/* Contact Form Wrapper */
.contact_form_wrapper {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact_form_wrapper .form-group {
    margin-bottom: 24px;
}

.contact_form_wrapper label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact_form_wrapper input[type="text"],
.contact_form_wrapper textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #333;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact_form_wrapper input[type="text"]:focus,
.contact_form_wrapper textarea:focus {
    outline: none;
    border-color: #43c59e;
    box-shadow: 0 0 0 4px rgba(67, 197, 158, 0.1);
}

.contact_form_wrapper input[type="text"]::placeholder,
.contact_form_wrapper textarea::placeholder {
    color: #999;
}

.contact_form_wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

/* reCAPTCHA Container */
.contact_form_wrapper .g-recaptcha {
    margin-bottom: 24px;
}

/* Submit Button */
.btn_submit {
    width: 100%;
    padding: 14px 32px;
    background: linear-gradient(135deg, #43c59e 0%, #3ab58c 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn_submit:hover {
    background: linear-gradient(135deg, #3ab58c 0%, #32a07d 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(67, 197, 158, 0.3);
}

.btn_submit:active {
    transform: translateY(0);
}

/* Error Messages */
.contact_form_wrapper small {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
}

/* Validation Error States */
.contact_form_wrapper input.error,
.contact_form_wrapper textarea.error {
    border-color: #dc3545;
}

.contact_form_wrapper label.error {
    color: #dc3545;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 6px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact_hero_title {
        font-size: 2.5rem;
    }

    .contact_hero_content {
        padding-right: 0;
        margin-bottom: 32px;
    }

    .contact_illustration {
        max-width: 400px;
        margin: 24px auto 0;
    }

    .contact_form_wrapper {
        padding: 32px;
    }
}

@media (max-width: 767px) {
    .contact_hero_section {
        padding: 50px 0;
        min-height: auto;
    }

    .contact_hero_title {
        font-size: 2rem;
        text-align: center;
    }

    .contact_hero_description {
        text-align: center;
    }

    .woulib_logo_section {
        text-align: center;
    }

    .contact_illustration {
        max-width: 300px;
    }

    .contact_form_wrapper {
        padding: 24px;
    }

    .contact_form_wrapper label {
        font-size: 0.9rem;
    }

    .contact_form_wrapper input[type="text"],
    .contact_form_wrapper textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .btn_submit {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 575px) {
    .contact_hero_title {
        font-size: 1.75rem;
    }

    .contact_hero_description {
        font-size: 0.95rem;
    }

    .woulib_logo {
        max-width: 150px;
    }

    .contact_illustration {
        max-width: 250px;
    }

    .contact_form_wrapper {
        padding: 20px;
    }

    .contact_form_wrapper .form-group {
        margin-bottom: 20px;
    }

    .contact_form_wrapper textarea {
        min-height: 100px;
    }
}
