/* Contact Page Styles */

.contact-welcome {
    text-align: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 30px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.contact-welcome h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #f8fafc;
}

.contact-welcome p {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

@media (min-width: 600px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 12px -3px rgba(0,0,0,0.08);
}

.contact-card.primary {
    background-color: #eff6ff;
    border-color: #dbeafe;
}
.contact-card.primary .contact-icon {
    background-color: #3b82f6;
    color: white;
}
.contact-card.primary h3 { color: #1e3a8a; }

.contact-card.secondary {
    background-color: #fef2f2;
    border-color: #fee2e2;
}
.contact-card.secondary .contact-icon {
    background-color: #ef4444;
    color: white;
}
.contact-card.secondary h3 { color: #7f1d1d; }

.contact-card.tertiary {
    background-color: #f0fdf4;
    border-color: #dcfce7;
}
.contact-card.tertiary .contact-icon {
    background-color: #22c55e;
    color: white;
}
.contact-card.tertiary h3 { color: #14532d; }

.contact-card.quaternary {
    background-color: #fffbeb;
    border-color: #fef3c7;
}
.contact-card.quaternary .contact-icon {
    background-color: #f59e0b;
    color: white;
}
.contact-card.quaternary h3 { color: #78350f; }

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-info h3 {
    margin: 0 0 4px 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.contact-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 500;
}

/* Support Section */
.support-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.support-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.support-header i {
    font-size: 1.8rem;
    color: #f59e0b;
}

.support-header h2 {
    margin: 0;
    font-size: 1.3rem;
    color: #0f172a;
}

.support-desc {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.support-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 0.95rem;
    font-weight: 500;
}

.support-list li:last-child {
    border-bottom: none;
}

.support-list li i {
    color: #22c55e;
    font-size: 1.2rem;
}

.support-footer {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px dashed #cbd5e1;
}

.support-footer p {
    margin: 0;
    color: #0f172a;
    font-size: 0.95rem;
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin-bottom: 30px;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.form-header i {
    font-size: 1.8rem;
    color: #3b82f6;
}

.form-header h2 {
    margin: 0;
    font-size: 1.3rem;
    color: #0f172a;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #334155;
}

.contact-form .input-wrapper {
    position: relative;
}

.contact-form .input-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.2rem;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form .text-area-wrapper i {
    top: 15px;
    transform: none;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
