/* Contact Page Styles */

.contact-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.contact-header-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.contact-header-desc {
    font-size: 1.2rem;
    opacity: 0.9;
}

.contact-section {
    padding: 4rem 0;
    background: var(--bg-accent);
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.contact-info-title,
.contact-form-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--secondary);
}

.contact-info-label {
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.9);
}

.alert {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    color: white;
}

.alert-success {
    background: var(--accent);
}

.alert-error {
    background: var(--error);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 1rem;
    color: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}