/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 8rem 0 4rem;
    margin-top: 4rem;
}

.contact-header {
    text-center;
    max-width: 48rem;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.form-card {
    background: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.checkbox-label a {
    color: #3b82f6;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    align-self: flex-start;
}

.contact-info {
    margin-bottom: 2rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-icon {
    color: #3b82f6;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.info-label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.info-text {
    color: #6b7280;
    line-height: 1.5;
}

.social-section {
    margin-top: 2rem;
}

.social-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.social-buttons {
    display: flex;
    gap: 0.5rem;
}

.social-btn {
    padding: 0.5rem;
    min-width: 2.5rem;
    justify-content: center;
}

/* Responsive Design for Contact Page */
@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 1024px) {
    .contact-hero {
        padding: 10rem 0 5rem;
    }
    
    .contact-title {
        font-size: 3.5rem;
    }
}