*, *::before, *::after { border-color: #dde3ea; outline-color: rgba(107,122,141,0.5); }
.hero-gradient { background: linear-gradient(135deg, rgba(196,92,28,0.95), rgba(180,80,20,0.9)), url('/makaziflo/public/images/hero/hero-bg.svg') center/cover; }
.property-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.property-card { transition: all 0.3s ease; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.btn-primary { background: #0a1628; color: #fff; padding: 0.5rem 1.5rem; border-radius: 0.5rem; font-weight: 600; transition: all 0.2s; }
.btn-primary:hover { background: #b05018; box-shadow: 0 4px 12px rgba(196,92,28,0.4); }
.btn-accent { background: #f59e0b; color: #fff; padding: 0.5rem 1.5rem; border-radius: 0.5rem; font-weight: 600; transition: all 0.2s; }
.btn-accent:hover { background: #d97706; }
.section-title { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.5rem; color: #1a2b3c; }
@media (max-width: 640px) { .section-title { font-size: 1.25rem; } }
.sidebar-scroll::-webkit-scrollbar { width: 3px; }
.sidebar-scroll::-webkit-scrollbar-track { background: transparent; }
.sidebar-scroll::-webkit-scrollbar-thumb { background: transparent; border-radius: 3px; transition: background 0.2s; }
.sidebar-scroll:hover::-webkit-scrollbar-thumb { background: #c4b5a5; }
.sidebar-scroll { scrollbar-width: thin; scrollbar-color: transparent transparent; }
.sidebar-scroll:hover { scrollbar-color: #c4b5a5 transparent; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; width: 20px; height: 20px; background: #0a1628; border-radius: 50%; cursor: pointer; border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.2); }
input[type="range"]::-webkit-slider-runnable-track { height: 6px; background: #e8edf2; border-radius: 3px; }
input[type="range"] { -webkit-appearance: none; width: 100%; background: transparent; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.animate-fade-in { animation: fadeInUp 0.5s ease-out; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.animate-pulse-dot { animation: pulse-dot 2s ease-in-out infinite; }
.calendar-day:hover { background: #0a1628; color: #fff; }
.calendar-day.booked { background: #fee2e2; color: #dc2626; }
.calendar-day.available { background: #d1fae5; color: #059669; }
.toast-container { position: fixed; top: 1rem; right: 1rem; z-index: 9999; }
.toast { padding: 0.75rem 1rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500; animation: slideIn 0.3s ease-out; }
.toast-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.toast-error { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 100; display: flex; align-items: center; justify-content: center; }
.modal-content { background: white; border-radius: 1rem; max-width: 500px; width: 90%; max-height: 90vh; overflow-y: auto; }
