/* Custom CSS for Aerus of Towson */

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

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes gentle-float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out;
}

.animate-float {
  animation: gentle-float 6s ease-in-out infinite;
}

/* Video background - natural original quality */
video {
  /* Removed artificial brightness/contrast filters to preserve original video quality */
}

/* Smooth video transitions */
.video-hero {
  transition: all 0.3s ease;
  position: relative;
}

.video-hero:hover video {
  transform: scale(1.02);
  /* Removed brightness filters to preserve original video quality */
}

/* Enhanced radiant backgrounds */
.radiant-bg-blue {
  background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.4) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(99, 102, 241, 0.2) 0%, transparent 50%);
  animation: radiant-flow 15s ease-in-out infinite;
}

.radiant-bg-green {
  background: radial-gradient(circle at 30% 40%, rgba(34, 197, 94, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.4) 0%, transparent 50%),
              radial-gradient(circle at 50% 20%, rgba(5, 150, 105, 0.2) 0%, transparent 50%);
  animation: radiant-flow-green 18s ease-in-out infinite;
}

.radiant-bg-purple {
  background: radial-gradient(circle at 25% 75%, rgba(147, 51, 234, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 75% 25%, rgba(99, 102, 241, 0.4) 0%, transparent 50%),
              radial-gradient(circle at 45% 45%, rgba(124, 58, 237, 0.2) 0%, transparent 50%);
  animation: radiant-flow-purple 20s ease-in-out infinite;
}

@keyframes radiant-flow {
  0%, 100% {
    background-position: 0% 0%, 100% 100%, 50% 50%;
    opacity: 0.8;
  }
  33% {
    background-position: 100% 0%, 0% 50%, 80% 20%;
    opacity: 1;
  }
  66% {
    background-position: 20% 100%, 80% 0%, 10% 90%;
    opacity: 0.9;
  }
}

@keyframes radiant-flow-green {
  0%, 100% {
    background-position: 0% 50%, 100% 0%, 50% 100%;
    opacity: 0.7;
  }
  50% {
    background-position: 100% 50%, 0% 100%, 50% 0%;
    opacity: 0.9;
  }
}

@keyframes radiant-flow-purple {
  0%, 100% {
    background-position: 50% 0%, 0% 100%, 100% 50%;
    opacity: 0.8;
  }
  50% {
    background-position: 0% 50%, 100% 0%, 50% 100%;
    opacity: 1;
  }
}

/* Glassmorphism Effects */
.glassmorphic-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.glassmorphic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.glassmorphic-button {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glassmorphic-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.glassmorphic-button:hover::before {
  left: 100%;
}

.glassmorphic-button:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2),
              inset 0 2px 0 rgba(255, 255, 255, 0.3);
}

/* Enhanced glassmorphic variants */
.glassmorphic-card-dark {
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.glassmorphic-overlay {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Enhanced Flowing Orbs with Particles */
.flowing-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.flowing-orbs::before,
.flowing-orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: float-orb 20s infinite linear;
  filter: blur(1px);
}

.flowing-orbs::before {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, rgba(14, 165, 233, 0.2) 40%, transparent 70%);
  top: -175px;
  left: -175px;
  animation-delay: 0s;
  box-shadow: 0 0 100px rgba(59, 130, 246, 0.3);
}

.flowing-orbs::after {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.5) 0%, rgba(99, 102, 241, 0.3) 40%, transparent 70%);
  bottom: -140px;
  right: -140px;
  animation-delay: -10s;
  box-shadow: 0 0 80px rgba(14, 165, 233, 0.4);
}

/* Additional floating particles */
.particle-field {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle-field::before,
.particle-field::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float-particle 25s infinite linear;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.particle-field::before {
  top: 20%;
  left: 10%;
  animation-delay: -5s;
}

.particle-field::after {
  top: 60%;
  right: 15%;
  animation-delay: -15s;
}

@keyframes float-particle {
  0% {
    transform: translateY(0px) translateX(0px) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) translateX(100px) scale(1.5);
    opacity: 0;
  }
}

.flowing-orbs-green::before,
.flowing-orbs-green::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: float-orb 25s infinite linear;
}

.flowing-orbs-green::before {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
  top: -125px;
  right: -125px;
  animation-delay: -5s;
}

.flowing-orbs-green::after {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
  bottom: -90px;
  left: -90px;
  animation-delay: -15s;
}

.flowing-orbs-purple::before,
.flowing-orbs-purple::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  animation: float-orb 22s infinite linear;
}

.flowing-orbs-purple::before {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.3) 0%, transparent 70%);
  top: -140px;
  left: 50%;
  animation-delay: -8s;
}

.flowing-orbs-purple::after {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  bottom: -110px;
  right: 30%;
  animation-delay: -12s;
}

@keyframes float-orb {
  0% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.7;
  }
  25% {
    transform: translateY(-100px) translateX(50px) scale(1.1);
    opacity: 0.9;
  }
  50% {
    transform: translateY(-50px) translateX(-30px) scale(0.9);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-80px) translateX(80px) scale(1.05);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0px) translateX(0px) scale(1);
    opacity: 0.7;
  }
}

/* Glow Text Effects */
.glow-text {
  text-shadow: 0 0 20px rgba(103, 232, 249, 0.8),
               0 0 40px rgba(103, 232, 249, 0.6),
               0 0 60px rgba(103, 232, 249, 0.4);
  animation: glow-pulse 3s ease-in-out infinite alternate;
}

.glow-text-green {
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.8),
               0 0 40px rgba(74, 222, 128, 0.6),
               0 0 60px rgba(74, 222, 128, 0.4);
  animation: glow-pulse-green 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  from {
    text-shadow: 0 0 20px rgba(103, 232, 249, 0.8),
                 0 0 40px rgba(103, 232, 249, 0.6),
                 0 0 60px rgba(103, 232, 249, 0.4);
  }
  to {
    text-shadow: 0 0 30px rgba(103, 232, 249, 1),
                 0 0 50px rgba(103, 232, 249, 0.8),
                 0 0 80px rgba(103, 232, 249, 0.6);
  }
}

@keyframes glow-pulse-green {
  from {
    text-shadow: 0 0 20px rgba(74, 222, 128, 0.8),
                 0 0 40px rgba(74, 222, 128, 0.6),
                 0 0 60px rgba(74, 222, 128, 0.4);
  }
  to {
    text-shadow: 0 0 30px rgba(74, 222, 128, 1),
                 0 0 50px rgba(74, 222, 128, 0.8),
                 0 0 80px rgba(74, 222, 128, 0.6);
  }
}

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

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Custom gradient backgrounds */
.bg-water-gradient {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

.bg-clean-gradient {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Loading states */
.loading {
  position: relative;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Form enhancements */
.form-group {
  position: relative;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  transform: translateY(-1.5rem) scale(0.85);
  color: #1e40af;
}

.form-label {
  position: absolute;
  top: 0.75rem;
  left: 1rem;
  color: #6b7280;
  background: white;
  padding: 0 0.25rem;
  transition: all 0.2s ease;
  pointer-events: none;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: #1e40af;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #1e3a8a;
}

/* Mobile menu */
#mobile-menu {
  transition: all 0.3s ease;
}

#mobile-menu.hidden {
  opacity: 0;
  transform: translateY(-10px);
}

#mobile-menu.show {
  opacity: 1;
  transform: translateY(0);
}

/* Sticky header */
.sticky-header {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

/* Reviews styling */
.review-card {
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: scale(1.02);
}

/* Star ratings */
.star-rating {
  color: #fbbf24;
}

/* Service area badges */
.service-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #eff6ff;
  color: #1e40af;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0.125rem;
}

/* Print styles */
@media print {
  .no-print {
    display: none;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}

/* Accessibility improvements */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus states */
.focus-ring:focus {
  outline: 2px solid #1e40af;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .bg-aerus-blue {
    background-color: #000080 !important;
  }
  
  .text-aerus-blue {
    color: #000080 !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Underwater Theme - Water Bubbles */
.underwater-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}

.underwater-bubbles::before,
.underwater-bubbles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(173, 216, 230, 0.3) 50%, transparent 70%);
  animation: bubble-float 8s infinite ease-in-out;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.3),
              0 0 20px rgba(173, 216, 230, 0.4);
}

.underwater-bubbles::before {
  width: 15px;
  height: 15px;
  top: 100%;
  left: 20%;
  animation-delay: 0s;
}

.underwater-bubbles::after {
  width: 25px;
  height: 25px;
  top: 100%;
  left: 70%;
  animation-delay: -4s;
}

@keyframes bubble-float {
  0% {
    transform: translateY(0px) translateX(0px) scale(0.3);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-150vh) translateX(50px) scale(1.2);
    opacity: 0;
  }
}

/* Water-themed section backgrounds */
.water-section {
  background: linear-gradient(180deg, 
              rgba(240, 249, 255, 0.95) 0%, 
              rgba(224, 242, 254, 0.9) 25%,
              rgba(186, 230, 253, 0.85) 50%,
              rgba(147, 197, 253, 0.8) 75%,
              rgba(59, 130, 246, 0.1) 100%);
  position: relative;
  overflow: hidden;
}

.water-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 90% 10%, rgba(147, 197, 253, 0.15) 0%, transparent 40%);
  animation: underwater-flow 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes underwater-flow {
  0%, 100% {
    opacity: 0.7;
    transform: translateX(0px) scale(1);
  }
  33% {
    opacity: 0.9;
    transform: translateX(20px) scale(1.05);
  }
  66% {
    opacity: 0.8;
    transform: translateX(-15px) scale(0.98);
  }
}

/* Additional floating bubbles for sections */
.bubble-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.floating-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(173, 216, 230, 0.3));
  animation: bubble-rise 12s infinite linear;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.4),
              0 0 15px rgba(14, 165, 233, 0.3);
}

.floating-bubble:nth-child(1) {
  width: 14px;
  height: 14px;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 8s;
}

.floating-bubble:nth-child(2) {
  width: 10px;
  height: 10px;
  left: 45%;
  animation-delay: -3s;
  animation-duration: 10s;
}

.floating-bubble:nth-child(3) {
  width: 18px;
  height: 18px;
  left: 75%;
  animation-delay: -6s;
  animation-duration: 12s;
}

.floating-bubble:nth-child(4) {
  width: 12px;
  height: 12px;
  left: 85%;
  animation-delay: -9s;
  animation-duration: 9s;
}

.floating-bubble:nth-child(5) {
  width: 16px;
  height: 16px;
  left: 25%;
  animation-delay: -12s;
  animation-duration: 14s;
}

.floating-bubble:nth-child(6) {
  width: 8px;
  height: 8px;
  left: 55%;
  animation-delay: -15s;
  animation-duration: 7s;
}

/* Water ripple effects */
.water-ripple {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, transparent 40%, rgba(14, 165, 233, 0.1) 60%, transparent 80%);
  animation: ripple-expand 4s infinite ease-out;
  pointer-events: none;
}

.water-ripple:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.water-ripple:nth-child(2) {
  top: 60%;
  left: 70%;
  animation-delay: -2s;
}

@keyframes ripple-expand {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.4;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes bubble-rise {
  0% {
    transform: translateY(100vh) translateX(0px) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-20vh) translateX(30px) scale(1.2);
    opacity: 0;
  }
}

/* Modern Hero Text Animations */
.animated-hero-text {
  perspective: 1000px;
}

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px) rotateX(45deg);
  animation: heroWordReveal 1.2s ease-out forwards;
  margin-right: 0.2em;
}

.hero-highlight {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) scale(0.8);
  animation: heroHighlightReveal 1.5s ease-out forwards;
  text-shadow: 0 0 30px rgba(14, 165, 233, 0.6);
  position: relative;
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4, #0891b2);
  animation: underlineGrow 2s ease-out 1.2s forwards;
  border-radius: 2px;
}

.hero-paragraph {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeInUp 1s ease-out 1.5s forwards;
}

@keyframes heroWordReveal {
  0% {
    opacity: 0;
    transform: translateY(50px) rotateX(45deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-10px) rotateX(-5deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

@keyframes heroHighlightReveal {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  70% {
    opacity: 1;
    transform: translateY(-5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes underlineGrow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Additional glow effect on hover for hero text */
.hero-highlight:hover {
  text-shadow: 0 0 40px rgba(14, 165, 233, 0.8),
               0 0 60px rgba(14, 165, 233, 0.6);
  transition: text-shadow 0.3s ease;
}

/* Hero buttons animation */
.hero-buttons {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeInUp 1s ease-out 2s forwards;
}

.hero-buttons a {
  transform: scale(0.9);
  animation: buttonBounceIn 0.6s ease-out forwards;
}

.hero-buttons a:first-child {
  animation-delay: 2.2s;
}

.hero-buttons a:last-child {
  animation-delay: 2.4s;
}

/* Hero consultation text animation */
.hero-consultation {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeInUp 0.8s ease-out 2.8s forwards;
}

@keyframes buttonBounceIn {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Typing effect for modern touch */
.hero-word:nth-child(1) { animation-delay: 0.2s; }
.hero-word:nth-child(2) { animation-delay: 0.4s; }
.hero-word:nth-child(3) { animation-delay: 0.6s; }
.hero-word:nth-child(4) { animation-delay: 0.8s; }

/* Medallion Slider Styles */
.medallion-slider {
  background: rgba(59, 130, 246, 0.15); /* Light blue with transparency */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
  position: relative;
  padding: 5px 0; /* Minimal padding as requested - 5px top/bottom */
}

.medallion-track {
  display: flex;
  animation: scroll-medallions 40s linear infinite;
  white-space: nowrap;
}

.medallion-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3rem; /* Increased horizontal padding for more space */
  height: 100px; /* Reduced height for minimal top/bottom space */
}

.medallion-item img {
  max-height: 90px; /* Increased image height to fill space better */
  max-width: 140px; /* Increased image width */
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
  transition: all 0.3s ease;
}

.medallion-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.2) contrast(1.15) saturate(1.1);
}

/* Trust indicator items in slider */
.trust-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 3rem; /* Increased padding to match medallion items */
  height: 100px;
  color: #1e40af; /* Aerus blue */
}

.trust-item .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 18px;
  color: white;
}

.trust-item .value {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 2px;
}

.trust-item .label {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  white-space: nowrap;
}

/* Duplicate the track for seamless loop */
.medallion-track::after {
  content: '';
  display: flex;
  flex-shrink: 0;
}

@keyframes scroll-medallions {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.medallion-slider:hover .medallion-track {
  animation-play-state: paused;
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
  /* Dark mode styles would go here if needed */
}