/* Contact Page Enhancements */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.contact-info-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.contact-info-card h3 {
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-info-card p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.6;
}

.contact-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 8px 16px;
    border: 2px solid #4f46e5;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: #4f46e5;
    color: white;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-link i {
    font-size: 18px;
}

.response-time {
    margin: 16px 0;
}

.time-highlight {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 4px;
}

.urgent-note {
    font-size: 0.875rem;
    color: #ef4444;
    font-style: italic;
    margin-top: 8px;
}

/* Form Enhancements */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, #312e81 0%, #4f46e5 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-message.loading {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* FAQ Section */
.faq-section {
    margin-top: 32px;
}

.faq-item {
    background: var(--white);
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid #4f46e5;
}

.faq-item h3 {
    color: #1f2937;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.faq-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .social-links {
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 24px 16px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}