html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid #EF4444;
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background: #B91C1C;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #7F1D1D;
}

.hero-section {
  min-height: 100vh;
}

@media (max-width: 1024px) {
  .hero-section {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

input:focus,
textarea:focus {
  transform: translateY(-1px);
}

button[type="submit"],
.btn-phone {
  transition: all 0.2s ease;
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(239, 68, 68, 0.3);
}

.hover\:shadow-xl:hover {
  transform: translateY(-4px);
}

a[href^="tel:"] {
  white-space: nowrap;
}

input[type="checkbox"] {
  accent-color: #EF4444;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section h1,
.hero-section p,
.hero-section ul,
.hero-section a {
  animation: fadeInUp 0.6s ease-out forwards;
}

.hero-section h1 { animation-delay: 0.1s; }
.hero-section p { animation-delay: 0.2s; }
.hero-section ul { animation-delay: 0.3s; }
.hero-section > div > div > a { animation-delay: 0.4s; }

.hero-section form {
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

@media (max-width: 640px) {
  h1 {
    font-size: 2rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media print {
  .hero-section,
  footer,
  form {
    display: none;
  }

  body {
    font-size: 12pt;
    color: black;
  }
}
