/* Contact page styles */
.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info h3 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-details {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.contact-details p {
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.contact-details i {
    margin-right: 0.5rem;
    color: #007bff;
    width: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.contact-form h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    padding: 0.75rem;
    border-radius: 4px;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn-primary {
    padding: 0.75rem 2rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-details {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .contact-details p {
        margin-bottom: 0.5rem;
    }
}

.honeypot-field {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
} 