/* Business Hours Section */ .business-hours { background: #f8f9fa; padding: 1.5rem; border-radius: 10px; margin: 1.5rem 0; } .business-hours h4 { margin-bottom: 1rem; color: #2563eb; display: flex; align-items: center; gap: 0.5rem; } .business-hours ul { list-style: none; } .business-hours li { padding: 0.5rem 0; display: flex; justify-content: space-between; border-bottom: 1px solid #e0e0e0; } .business-hours li span { font-weight: 600; color: #333; } .emergency-note { margin-top: 1rem; font-size: 0.85rem; color: #ef4444; background: #fee2e2; padding: 0.5rem; border-radius: 5px; text-align: center; } /* Form Improvements */ .contact-form h3 { margin-bottom: 1.5rem; color: #333; font-size: 1.5rem; } .form-note { margin-top: 1rem; font-size: 0.8rem; color: #666; text-align: center; } .contact-form button i { margin-right: 0.5rem; } /* Quick Buttons Updated */ .quick-buttons { display: flex; gap: 1rem; flex-wrap: wrap; } .quick-btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 12px 20px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: all 0.3s; flex: 1; min-width: 140px; } .quick-btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); } .telegram-btn { background: #0088cc; color: white; } .call-btn { background: #2563eb; color: white; } .email-btn { background: #ea4335; color: white; } /* Map Section */ .map-section { padding: 0 0 80px 0; } .map-container { border-radius: 10px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.1); } /* Responsive Improvements */ @media (max-width: 768px) { .business-hours li { flex-direction: column; gap: 0.3rem; } .quick-btn { min-width: 100%; } .contact-form h3 { margin-top: 2rem; } }