@keyframes floatUp {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(-100px);
  }
}

@keyframes floatDown {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(100px);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-33.33%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-33.33%);
  }
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #f59e0b;
  border-radius: 4px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Background */
body {
  background: #000000;
  color: #f59e0b;
  font-family: "League Spartan", sans-serif;
}

/* Noise texture */
.noise-bg::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
  background: linear-gradient(
    45deg,
    rgba(245, 158, 11, 0.2) 0%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  pointer-events: none;
}

/* Testimonial slider */
.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: block;
}

/* Mobile menu animation */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Quote modal */
.quote-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 9999;
}

.quote-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Gallery animations */
.gallery-row-1 {
  animation: scrollRight 60s linear infinite;
}

.gallery-row-2 {
  animation: scrollLeft 70s linear infinite;
}

.gallery-row-3 {
  animation: scrollRight 50s linear infinite;
}

@media (max-width: 768px) {
  .gallery-row-1 {
    animation: scrollRight 45s linear infinite;
  }

  .gallery-row-2 {
    animation: scrollLeft 50s linear infinite;
  }

  .gallery-row-3 {
    animation: scrollRight 40s linear infinite;
  }
}

/* Intersection Observer fade-in */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Form input consistency */
.form-input {
  height: 48px !important;
  padding: 12px !important;
}

.form-select {
  height: 48px !important;
  padding: 12px !important;
}

.form-textarea {
  min-height: 48px !important;
  padding: 12px !important;
}

/* Logo styling */
.logo-text {
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
