/* contact.css - Additional styles for contact page */

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.contact-method {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-method h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.contact-method p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-method a {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.contact-method a:hover {
    text-decoration: underline;
}

.response-time {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-form {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.submit-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
}

.form-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 1rem;
}

.contact-details {
    margin: 3rem 0;
}

.contact-detail-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-detail-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-detail-item p {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-detail-item a {
    color: #3498db;
    text-decoration: none;
}

.contact-detail-item a:hover {
    text-decoration: underline;
}

.emergency-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 5px 5px 0;
}

.emergency-notice h3 {
    color: #856404;
    margin-bottom: 0.5rem;
}

.emergency-notice p {
    color: #856404;
    margin-bottom: 0.5rem;
}

.emergency-notice a {
    color: #0056b3;
    font-weight: 500;
}

/* Help page specific styles */
.help-category {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.help-category h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.help-category ul {
    margin-left: 1.5rem;
}

.help-category li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.faq-section {
    margin: 2rem 0 3rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.faq-item h3 {
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.help-contact {
    background: #e8f4fc;
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.help-contact h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.help-contact p {
    margin-bottom: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .help-category h2 {
        font-size: 1.2rem;
    }
}