/* ===========================
   CONTACT PAGE SPECIFIC STYLES
   =========================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Contact Information Section */
.contact-section {
    background: white;
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: white;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #667eea;
    background: #f8f9ff;
    padding: 1rem;
    border-radius: 50%;
    display: inline-block;
}

.contact-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info {
    color: #666;
    line-height: 1.8;
}

.contact-info a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #5a6fd8;
    text-decoration: underline;
}

/* Map Section */
.map-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.map-iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 300px;
}

.map-overlay h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.map-overlay p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Business Hours */
.hours-section {
    background: white;
    padding: 4rem 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.hours-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: white;
}

.hours-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.hours-title {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hours-list {
    list-style: none;
    color: #666;
}

.hours-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.day {
    font-weight: 500;
}

.time {
    color: #667eea;
    font-weight: 600;
}

/* Contact Form Section */
.form-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 1rem;
    background: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Emergency Contact */
.emergency-section {
    background: white;
    padding: 4rem 0;
}

.emergency-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.emergency-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.emergency-description {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.emergency-card {
    background: #fff5f5;
    border: 2px solid #ff6b6b;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.emergency-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}

.emergency-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.emergency-label {
    font-size: 1.1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.emergency-number {
    font-size: 1.3rem;
    color: #ff6b6b;
    font-weight: 700;
}

.emergency-number a {
    color: inherit;
    text-decoration: none;
}

/* Social Media Links */
.social-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.social-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-description {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid rgba(255,255,255,0.3);
}

.social-link:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .map-overlay {
        position: static;
        margin-top: 1rem;
        margin-left: 0;
    }
    
    .emergency-contacts {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-card,
    .hours-card,
    .emergency-card {
        padding: 1.5rem;
    }
    
    .contact-icon,
    .hours-icon,
    .emergency-icon {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .map-iframe {
        height: 300px;
    }
}