/* Custom Styles for Breakdown Recovery Website */
:root {
  --bg-dark: #040D1B;
  --bg-card: #0A162B;
  --brand-yellow: #FFCB05;
  --brand-red: #D0202F;
  --brand-[#FF2B32]: #FF2B32;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--bg-dark);
  color: #f1f5f9;
  margin: 0;
  padding: 0;
}

/* Smooth transitions */
a, button {
  transition: all 0.2s ease-in-out;
}

/* Call Button Animation */
.call-btn-pulse {
  box-shadow: 0 0 0 0 rgba(208, 32, 47, 0.7);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(208, 32, 47, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(208, 32, 47, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(208, 32, 47, 0);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #040d1b;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}
