/* Contact Page Styles */
.page-header {
    padding: 4rem 0 2rem;
    background: linear-gradient(135deg, var(--slate-900) 0%, var(--primary-900) 100%);
    color: white;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}
.contact-form h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--slate-800);
    background: var(--slate-50);
    border: 2px solid var(--slate-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    background: white;
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}
.form-group textarea {
    min-height: 150px;
    resize: vertical;
}
.required {
    color: var(--accent-pink);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.info-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}
.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--slate-900);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.info-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-500), var(--accent-purple));
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.info-card p {
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.info-card a {
    color: var(--primary-600);
    text-decoration: none;
    font-weight: 500;
}
.info-card a:hover {
    text-decoration: underline;
}
.faq-section {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}
.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--slate-900);
    margin-bottom: 2rem;
    text-align: center;
}
.faq-item {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--slate-50);
    border-radius: var(--radius-lg);
}
.faq-question {
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}
.faq-answer {
    color: var(--slate-600);
    line-height: 1.6;
}
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.875rem;
}
.breadcrumb a {
    color: var(--primary-600);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.success-message {
    display: none;
    padding: 1rem;
    background: var(--accent-green);
    color: white;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
