/* Custom SCSS Styles */
.text-shadow-sm {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.text-shadow-lg {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.backdrop-blur-strong {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.shadow-brand {
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.shadow-brand-lg {
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
}

.text-responsive {
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.heading-responsive {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #FF6B35 0%, #00B4D8 100%);
  border-radius: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #E8551F 0%, #0096C7 100%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #0F172A;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: #FF6B35;
  color: white;
}

::-moz-selection {
  background-color: #FF6B35;
  color: white;
}

a[href^="#"] {
  scroll-behavior: smooth;
}

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

.gradient-text {
  background: linear-gradient(135deg, #FF6B35 0%, #00B4D8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background: linear-gradient(135deg, #FF6B35 0%, #00B4D8 100%);
}

.gradient-bg-reverse {
  background: linear-gradient(135deg, #00B4D8 0%, #FF6B35 100%);
}

.btn-gradient {
  background: linear-gradient(135deg, #FF6B35 0%, #00B4D8 100%);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}
.btn-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #E8551F 0%, #0096C7 100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.btn-gradient:hover::before {
  opacity: 1;
}
.btn-gradient span {
  position: relative;
  z-index: 1;
}

.feature-card {
  transition: all 0.3s ease-in-out;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 1rem;
}

.section-divider {
  position: relative;
}
.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35 0%, #00B4D8 100%);
  border-radius: 2px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.float-animation {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}
.icon-pulse {
  animation: pulse-icon 2s ease-in-out infinite;
}

.hero-sheen {
  position: relative;
  isolation: isolate;
}
.hero-sheen::before {
  content: "";
  position: absolute;
  inset: -25% -15%;
  background: radial-gradient(circle at top left, rgba(238, 114, 3, 0.25), transparent 45%), radial-gradient(circle at bottom right, rgba(0, 102, 153, 0.25), transparent 50%);
  z-index: -1;
  filter: blur(0px);
  opacity: 0.8;
}

.floating {
  animation: floating 24s ease-in-out infinite;
}

@keyframes floating {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(6px, -9px, 0) scale(1.02);
  }
  66% {
    transform: translate3d(-4px, 15px, 0) scale(0.99);
  }
}
.mesh-gradient {
  background: radial-gradient(circle at 10% 20%, rgba(0, 102, 153, 0.18), transparent 45%), radial-gradient(circle at 90% 15%, rgba(238, 114, 3, 0.18), transparent 40%), linear-gradient(135deg, rgba(0, 102, 153, 0.12), rgba(238, 114, 3, 0.12));
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0, 102, 153, 0.15), rgba(238, 114, 3, 0.15));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  background: linear-gradient(135deg, rgba(0, 102, 153, 0.12), rgba(238, 114, 3, 0.12));
  border: 1px solid rgba(0, 102, 153, 0.15);
}

.qr-card {
  background: linear-gradient(135deg, rgba(238, 114, 3, 0.08), rgba(0, 102, 153, 0.08));
}

.testimonials-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.footer-gradient {
  background: linear-gradient(180deg, rgba(0, 102, 153, 0.08) 0%, rgba(238, 114, 3, 0.08) 100%);
}
