/* Base Styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background-color: #f9fafb; color: #111827; line-height: 1.5; }

.min-h-screen { min-height: 100vh; }
.bg-gray-50 { background-color: #f9fafb; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.max-w-7xl { max-width: 80rem; margin: 0 auto; }
.text-center { text-align: center; }
.mb-12 { margin-bottom: 3rem; }

/* Typography */
.text-5xl { font-size: 3rem; }
.font-extrabold { font-weight: 800; }
.text-indigo-600 { color: #4f46e5; }
.text-gray-900 { color: #111827; }
.text-gray-600 { color: #4b5563; }

/* Grid Layout */
.lg-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) {
    .lg-grid { grid-template-columns: repeat(5, 1fr); gap: 4rem; }
    .contact-info { grid-column: span 2; }
    .form-container { grid-column: span 3; }
}

/* Detail Cards */
.detail-card {
    display: flex;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    border: 1px solid #f3f4f6;
    transition: 0.3s;
}
.detail-card:hover { transform: translateY(-2px); box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.detail-card .icon { font-size: 1.875rem; margin-right: 1rem; }
.detail-card h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.25rem; }
.detail-card a { color: #4f46e5; text-decoration: none; font-size: 0.875rem; }
.hours { border-top: 1px solid #e5e7eb; padding-top: 1rem; color: #6b7280; font-size: 0.875rem; }

/* Form Styles */
.form-container { background: white; padding: 2.5rem; border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.25rem; color: #374151; }
.form-group input, .form-group textarea {
    width: 100%; padding: 0.75rem 1rem; border: 1px solid #d1d5db; border-radius: 0.5rem;
    transition: 0.15s; outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: #4f46e5; ring: 2px #4f46e5; }

.btn-submit {
    width: 100%; padding: 0.75rem; background-color: #4f46e5; color: white; border: none;
    border-radius: 0.5rem; font-weight: 600; cursor: pointer; transition: 0.3s;
}
.btn-submit:hover { background-color: #4338ca; transform: scale(1.01); }

/* Toast Notification */
.toast-container { position: fixed; bottom: 20px; right: 20px; z-index: 9999; }
.toast { padding: 1rem 1.5rem; border-radius: 0.5rem; color: white; margin-bottom: 10px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: 0.3s; }
.toast.success { background-color: #10b981; }
.toast.error { background-color: #ef4444; }