/* Custom styles for Call Center Ajaib */

/* Base styles */
body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
}

/* Color variables for consistency */
.bg-primary { background-color: #2563eb; }
.text-primary { color: #2563eb; }
.bg-primary-foreground { background-color: #1e40af; }
.text-primary-foreground { color: #f9fafb; }
.bg-secondary { background-color: #374151; }
.text-secondary-foreground { color: #d1d5db; }
.bg-muted { background-color: #e5e7eb; }
.text-muted-foreground { color: #6b7280; }
.border-border { border-color: #d1d5db; }
.hover\:bg-primary-foreground:hover { background-color: #1e40af; }
.hover\:text-primary:hover { color: #2563eb; }

/* Animation classes for hero section */
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.translate-y-10 { transform: translateY(2.5rem); }
.translate-y-0 { transform: translateY(0); }

/* Transition classes */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, fill, stroke, -webkit-text-decoration-color; transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, -webkit-text-decoration-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-shadow { transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

/* Delay classes */
.delay-200 { transition-delay: 200ms; }
.duration-1000 { transition-duration: 1000ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover effects */
.hover\:bg-green-700:hover { background-color: rgb(21 128 61 / var(--tw-bg-opacity, 1)); }
.hover\:text-white:hover { color: rgb(255 255 255 / var(--tw-text-opacity, 1)); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }

/* Focus styles */
.focus\:border-transparent:focus { border-color: transparent; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); }

/* Media queries for responsiveness */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
