/* Custom styles for Xamaro website */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Button hover effects */
button,
a {
  transition: all 0.3s ease;
}

/* Card hover effects */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Mobile menu transition */
#mobile-menu {
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}

#mobile-menu.hidden {
  max-height: 0;
}

#mobile-menu:not(.hidden) {
  max-height: 500px;
}

/* Sticky pricing banner */
.sticky-banner {
  position: sticky;
  top: 64px;
  z-index: 40;
}

/* Service card selection */
.service-card-selected {
  border: 2px solid #f47b20;
  background-color: rgba(244, 123, 32, 0.05);
}

/* Responsive utilities */
@media (max-width: 768px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
