/* Custom Airbnb-inspired styling & animations for BuyersMaxitrust */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-blue: #0066FF;
  --primary-dark: #0052CC;
  --dark-slate: #0F172A;
  --emerald-trust: #10B981;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #FAFAFA;
  color: #0F172A;
  overflow-x: hidden;
}

/* Custom Airbnb Soft Shadows (Solid & Elevated) */
.shadow-airbnb {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.shadow-airbnb-hover {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.shadow-airbnb-hover:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.shadow-solid-blue {
  box-shadow: 0 8px 20px rgba(0, 102, 255, 0.25);
  transition: all 0.25s ease;
}

.shadow-solid-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 102, 255, 0.35);
}

.shadow-solid-emerald {
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
  transition: all 0.25s ease;
}

/* Rich Micro-Animations */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.animate-float-slow {
  animation: floatSlow 5s ease-in-out infinite;
}

@keyframes pulseSubtle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

.animate-pulse-subtle {
  animation: pulseSubtle 3s ease-in-out infinite;
}

@keyframes bounceSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.animate-bounce-subtle {
  animation: bounceSubtle 2s ease-in-out infinite;
}

/* Phone Mockup Animation */
.phone-mockup {
  border: 10px solid #0F172A;
  border-radius: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-mockup:hover {
  transform: translateY(-6px) rotate(-1deg);
}

/* Range Slider Styling */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: #E2E8F0;
  border-radius: 9999px;
}

input[type=range]::-webkit-slider-thumb {
  height: 26px;
  width: 26px;
  border-radius: 50%;
  background: #0066FF;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -9px;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

/* Tab Active Transitions */
.tab-transition {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #F1F5F9;
}

::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94A3B8;
}

