/* Contact Page Styles */
.contact-page {
    padding: 120px 5% 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #333;
}

.emergency-notice {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 5px;
    margin-bottom: 3rem;
}

.emergency-notice h2 {
    font-size: 1.2rem;
    color: #333;
}

.emergency-notice a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

/* Form Styles */
.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group label {
    position: absolute;
    left: 0.8rem;
    top: 0.8rem;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    transform: translateY(-1.4rem);
    font-size: 0.8rem;
    color: #007bff;
}

.submit-button {
    background: #007bff;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #0056b3;
}

/* Location Cards */
.locations {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.location-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.location-card h4 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.location-card p {
    margin-bottom: 0.5rem;
    color: #666;
}

.directions-link {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    margin-top: 1rem;
    font-weight: bold;
}

.directions-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-page {
        padding: 100px 5% 40px;
    }

    .contact-page h1 {
        font-size: 2.5rem;
    }

    .emergency-notice h2 {
        font-size: 1rem;
    }
}

/* Animation */
.contact-form, .location-card {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 