/* Contact Page Specific Styles */

.contact-container {
    position: relative;
    min-height: 70vh;
    margin-top: 60px;
    padding: 60px 0;
    overflow: hidden;
}

.contact-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.contact-form {
    padding-right: 20px;
}

.contact-info {
    padding-left: 20px;
    border-left: 1px solid #eee;
}

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

.botcheck {
    display: none;
}

.form-result {
    margin-top: 12px;
    font-size: 0.95rem;
    font-family: 'Roboto', sans-serif;
    display: none;
}

.form-result.is-visible {
    display: block;
}

.form-result.is-success {
    color: #2f7a4f;
}

.form-result.is-error {
    color: #b23b3b;
}

.form-result.is-pending {
    color: #4a6fa0;
}

.captcha-group {
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.captcha-group .h-captcha {
    margin-top: 5px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

input, textarea, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
}

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

.info-item {
    margin-bottom: 25px;
}

.info-content {
    margin-bottom: 5px;
}

.office-location {
    margin-top: 30px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: center;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: #000;
    font-size: 15px;
}

.social-link:hover {
    color: #555;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        padding: 24px;
    }

    .contact-container {
        margin-top: 90px;
        padding: 40px 0;
    }

    .contact-info {
        padding-left: 0;
        border-left: none;
        padding-top: 30px;
        border-top: 1px solid #eee;
    }
}
