/**
 * Contact Page Styles - Soprinty
 * Simple and clean contact form design
 */

.contact-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-control, .form-control:focus {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.1);
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

/* RTL Support */
[dir="rtl"] .contact-form-container {
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 30px 20px;
    }
}
