/* Adobe Clean Fonts */
@font-face {
  font-family: "Adobe Clean";
  src: url("./assets/fonts/AdobeCleanRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Adobe Clean";
  src: url("./assets/fonts/AdobeCleanBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Adobe Clean";
  src: url("./assets/fonts/AdobeCleanExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Adobe Clean";
  src: url("./assets/fonts/AdobeCleanBlack.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

/* Custom styles for the homepage */

/* CSS Variables for colors and fonts (converted from SCSS) */
:root {
  --tp-common-white: #ffffff;
  --tp-common-black: #000000;
  --tp-common-yellow: #fbbf24;
  --tp-common-yellow-2: #fbbf24;
  --tp-theme-1: #3b82f6;

  /* Adobe Clean font variables */
  --font-heading: "Adobe Clean", -apple-system, BlinkMacSystemFont, "Segoe UI",
  Roboto, sans-serif; /* Adobe Clean Extra Bold for main headings */
  --font-subheading: "Adobe Clean", -apple-system, BlinkMacSystemFont,
  "Segoe UI", Roboto, sans-serif; /* Adobe Clean Bold for subheadings */
  --font-body: "Adobe Clean", -apple-system, BlinkMacSystemFont, "Segoe UI",
  Roboto, sans-serif; /* Adobe Clean Regular for body text */
  --font-description: "Adobe Clean", -apple-system, BlinkMacSystemFont,
  "Segoe UI", Roboto, sans-serif; /* Adobe Clean Regular for descriptions */
}

/* Utility mixins converted to CSS classes */
.tp-transition {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.tp-background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.tp-transform-hover {
  -webkit-transform: translate3d(0, -10px, 0);
  -moz-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0);
}

.tp-box-shadow {
  -webkit-box-shadow: 0px 16px 20px rgba(1, 16, 61, 0.1);
  -moz-box-shadow: 0px 16px 20px rgba(1, 16, 61, 0.1);
  -ms-box-shadow: 0px 16px 20px rgba(1, 16, 61, 0.1);
  -o-box-shadow: 0px 16px 20px rgba(1, 16, 61, 0.1);
  box-shadow: 0px 16px 20px rgba(1, 16, 61, 0.1);
}

/* Rating section styles to match original */
.tp-rated-area {
  position: relative;
}

.tp-rated-bg {
  background-repeat: no-repeat;
  background-size: cover;
  margin-left: 60px;
  margin-right: 60px;
  border-radius: 60px;
  height: 980px;
  overflow: hidden;
  padding-top: 120px;
}

@media (max-width: 991px) {
  .tp-rated-bg {
    margin-left: 0px;
    margin-right: 0px;
  }
}

.tp-rated-shape-1 {
  position: absolute;
  top: 6%;
  right: 7%;
  transform-origin: top right;
}

@media (max-width: 991px) {
  .tp-rated-shape-1 img {
    width: 60%;
  }
}

.tp-rated-shape-2 {
  position: absolute;
  top: 22%;
  left: 9%;
  animation: circle-animations 3s ease-in-out 1s forwards infinite alternate;
}

@media (max-width: 991px) {
  .tp-rated-shape-2 {
    top: 5%;
  }
}

@keyframes circle-animations {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.tp-rated-icon {
  padding-bottom: 20px;
}

.tp-rated-icon span {
  margin: 0px 4px;
}

.d-none {
  display: none !important;
}

.d-lg-block {
  display: block !important;
}

.d-sm-block {
  display: block !important;
}

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
}

@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.justify-content-center {
  justify-content: center !important;
}

.col-xl-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xl-4,
.col-lg-4,
.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-right: 15px;
  padding-left: 15px;
}

.text-center {
  text-align: center !important;
}

.tp-rated-title-box {
  margin-bottom: 60px;
}

.tp-section-title-3 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.2;
  color: white;
  margin-bottom: 40px;
}

.tp-section-title-3 span {
  font-style: italic;
  font-weight: 300;
}

@media (max-width: 991px) {
  .tp-rated-title-box .tp-section-title-3 br {
    display: none;
  }
}

.tp-btn-blue-lg {
  background-color: #3b82f6;
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tp-btn-blue-lg:hover {
  background-color: #2563eb;
  transform: scale(1.05);
}

.author-rated-wrapper {
  padding: 0px 70px;
  padding-bottom: 50px;
}

@media (max-width: 1199px) {
  .author-rated-wrapper {
    padding: 0px 30px;
    padding-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .author-rated-wrapper {
    padding: 0px 0px;
    padding-bottom: 50px;
  }
}

.author-rated {
  text-align: center;
  color: white;
}

@media (max-width: 575px) {
  .author-rated {
    margin-bottom: 60px;
  }
}

.author-rated p {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: white;
  margin-bottom: 0;
  padding-bottom: 25px;
}

@media (max-width: 575px) {
  .author-rated p {
    padding-bottom: 10px;
  }
}

.author-rated-icon {
  padding-bottom: 15px;
}

.author-rated-icon span {
  color: #fbbf24;
  font-size: 18px;
  margin: 0 2px;
}

.author-rated-logo img {
  height: 32px;
  opacity: 0.8;
}

.author-rated-big-img {
  text-align: center;
}

.author-rated-big-img img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.z-index-6 {
  z-index: 6;
  position: relative;
}

.p-relative {
  position: relative;
}

.fix {
  overflow: hidden;
}

.pt-120 {
  padding-top: 120px;
}

.pb-40 {
  padding-bottom: 40px;
}

.mb-60 {
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .tp-section-title-3 {
    font-size: 2.5rem;
  }

  .col-xl-4,
  .col-lg-4,
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .tp-section-title-3 {
    font-size: 2rem;
  }

  .tp-rated-shape-1,
  .tp-rated-shape-2 {
    display: none !important;
  }
}

/* Hide scrollbar for horizontal scroll */
.scrollbar-hide {
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  scrollbar-width: none;
  /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

/* Smooth gradient transitions */
.smooth-fade-top {
  background: linear-gradient(
          to bottom,
          #f3f4f6 0%,
          #f9fafb 25%,
          #ffffff 50%,
          rgba(255, 255, 255, 0.8) 75%,
          transparent 100%
  );
}

.smooth-fade-bottom {
  background: linear-gradient(
          to bottom,
          #f8f8f8 0%,

          white 100%
  );
}

.smooth-fade-middle {
  background: linear-gradient(
          to bottom,
          transparent 0%,
          rgba(249, 250, 251, 0.3) 25%,
          rgba(249, 250, 251, 0.5) 50%,
          rgba(249, 250, 251, 0.3) 75%,
          transparent 100%
  );
}

/* Grid background pattern */
.bg-grid-pattern {
  background-size: 60px 60px;
  background-image: linear-gradient(to right, #e4e4e7 1px, transparent 1px),
  linear-gradient(to bottom, #e4e4e7 1px, transparent 1px);
}

/* Radial gradient fade */
.bg-radial-fade {
  mask-image: radial-gradient(
          ellipse at center,
          transparent 1%,
          transparent 1%,
          black
  );
  -webkit-mask-image: radial-gradient(
          ellipse at center,
          transparent 1%,
          transparent 1%,
          black
  );
}

/* Aurora text effect */
.aurora-text {
  background: linear-gradient(
          135deg,
          #ff0080,
          #7928ca,
          #0070f3,
          #38bdf8,
          #ff0080
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: aurora 8s infinite;
}

@keyframes aurora {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Shiny text effect */
.shiny-text {
  position: relative;
  overflow: hidden;
}

.shiny-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.6),
          transparent
  );
  animation: shiny 8s infinite;
}

@keyframes shiny {
  0%,
  90%,
  100% {
    left: -100%;
  }

  30%,
  60% {
    left: 100%;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Hover effects */
.hover-scale {
  transition: transform 0.2s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* Button hover effects */
button {
  transition: all 0.2s ease;
}

/* Marquee animations with enhanced scrollable functionality */
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-reverse {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes restaurant-marquee {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-3200px);
  }
}

@keyframes brand-marquee {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(-1600px);
  }
}

/* Enhanced marquee classes with scrollable functionality */
.animate-marquee {
  animation: marquee 60s linear infinite;
  will-change: transform;
}

.animate-marquee-reverse {
  animation: marquee-reverse 60s linear infinite;
  will-change: transform;
}

.animate-restaurant-marquee {
  animation: restaurant-marquee 80s linear infinite;
  will-change: transform;
}

.animate-brand-marquee {
  animation: brand-marquee 60s linear infinite;
  will-change: transform;
}

/* Scrollable marquee containers - autoplay with no drag */
.marquee-container {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
  position: relative;
  cursor: default;
}

.marquee-container::-webkit-scrollbar {
  display: none; /* WebKit */
}

/* Keep animations running continuously - no pause on hover for autoplay */
.animate-marquee,
.animate-marquee-reverse,
.animate-restaurant-marquee,
.animate-brand-marquee {
  animation-play-state: running !important;
}

/* Smooth scroll behavior for marquee containers */
.marquee-container {
  scroll-behavior: smooth;
}

/* Focus indicators for accessibility */
.marquee-container:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.marquee-container:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Touch-friendly scrolling for mobile */
.marquee-container {
  -webkit-overflow-scrolling: touch;
}

/* Optional: Add subtle scroll indicators */
.marquee-scroll-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.marquee-container:hover .marquee-scroll-indicator {
  opacity: 1;
}

.marquee-scroll-indicator.left {
  left: 10px;
}

.marquee-scroll-indicator.right {
  right: 10px;
}

/* Prevent text selection on non-interactive elements */
.no-select {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Ensure images are responsive and not draggable */
img {
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Custom border radius */
.rounded-4xl {
  border-radius: 2rem;
}

/* Floating animations for decorative elements */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(1deg);
  }
}

@keyframes float-delayed {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-12px) rotate(-2deg);
  }
  66% {
    transform: translateY(-8px) rotate(1.5deg);
  }
}

.float-animation {
  animation: float 6s ease-in-out infinite;
}

.float-animation-delayed {
  animation: float-delayed 8s ease-in-out infinite;
  animation-delay: -2s;
}

/* Fade in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Stagger animation delays */
.fade-in-delay-1 {
  animation: fadeIn 0.6s ease-out 0.1s both;
}

.fade-in-delay-2 {
  animation: fadeIn 0.6s ease-out 0.2s both;
}

.fade-in-delay-3 {
  animation: fadeIn 0.6s ease-out 0.3s both;
}

/* Pulse animation for background elements */
@keyframes pulse {
  0%,
  100% {
    opacity: 0.1;
    transform: scale(1);
  }

  50% {
    opacity: 0.2;
    transform: scale(1.1);
  }
}

.animate-pulse-slow {
  animation: pulse 8s ease-in-out infinite;
}

/* Horizontal scroll container */
.horizontal-scroll {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.horizontal-scroll::-webkit-scrollbar {
  display: none;
}

/* Card hover effects */
.card-hover {
  transition: all 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);
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Loading animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Responsive utilities */
@media (max-width: 768px) {
  .text-responsive {
    font-size: 1.5rem;
  }

  .px-responsive {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Focus styles for accessibility */
button:focus,
a:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Custom shadows */
.shadow-custom {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
  0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-custom-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
  0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Backdrop blur fallback */
.backdrop-blur-fallback {
  background-color: rgba(255, 255, 255, 0.8);
}

@supports (backdrop-filter: blur(10px)) {
  .backdrop-blur-fallback {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.7);
  }
}

/* Smooth transitions for all interactive elements */
* {
  transition-property: color, background-color, border-color,
  text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter,
  backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Override for elements that shouldn't have transitions */
video,
img,
svg {
  transition: none;
}

/* Custom animations for specific elements */
.bounce-in {
  animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide in animations */
.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Floating animation */
.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Glow effect */
.glow {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.glow:hover {
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.7);
}

/* Text shadow for better readability */
.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-shadow-lg {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Custom border styles */
.border-gradient {
  border: 2px solid;
  border-image: linear-gradient(45deg, #3b82f6, #8b5cf6) 1;
}

/* Responsive text sizes */
@media (max-width: 640px) {
  .text-7xl {
    font-size: 3rem;
    line-height: 1;
  }

  .text-6xl {
    font-size: 2.5rem;
    line-height: 1;
  }

  .text-5xl {
    font-size: 2rem;
    line-height: 1.1;
  }
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }

  * {
    color: black !important;
    background: white !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .text-gray-600 {
    color: #000 !important;
  }

  .text-gray-400 {
    color: #333 !important;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Dark mode support (if needed) */
@media (prefers-color-scheme: dark) {
  .dark-mode-text {
    color: #f3f4f6;
  }

  .dark-mode-bg {
    background-color: #1f2937;
  }
}

/* Enhanc
ed Rating Section Styles */
.rating-card-hover {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rating-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
  0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button shimmer effect */
.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::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;
}

.btn-shimmer:hover::before {
  left: 100%;
}

/* Star animation stagger */
.star-stagger-1 {
  animation-delay: 0s;
}

.star-stagger-2 {
  animation-delay: 0.2s;
}

.star-stagger-3 {
  animation-delay: 0.4s;
}

.star-stagger-4 {
  animation-delay: 0.6s;
}

.star-stagger-5 {
  animation-delay: 0.8s;
}

/* Backdrop blur enhancement */
.backdrop-blur-enhanced {
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
}

/* Glass morphism effect */
.glass-morphism {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Floating animation for decorative shapes */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.float-animation-delayed {
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

/* Parallax effect for rating image */
#parallaxImage {
  transition: transform 0.3s ease-out;
}

/* Enhanced button hover effects */
.btn-enhanced {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-enhanced:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Rating section background overlay */
.rating-bg-overlay {
  background: linear-gradient(
          135deg,
          rgba(0, 0, 0, 0.4) 0%,
          rgba(0, 0, 0, 0.6) 100%
  );
}

/* Star pulse animation */
@keyframes starPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.star-pulse {
  animation: starPulse 2s ease-in-out infinite;
}

.bg-hero {
  background-image: url("assets/img/rate/rated-bg.jpg");
  background-size: cover;
  background-position: center;
}

.parallax-element {
  transform: translate3d(0px, 0.029px, 0px);
}

.btn-hover {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.btn-hover:hover {
  transform: translateY(-2px);
}

.star-icon {
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Accessibility and SEO Enhancement Styles */
.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;
}

.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  z-index: 999999;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
}

/* Enhanced focus indicators for better accessibility */
*:focus {
  outline: 2px solid #2563eb !important;
  outline-offset: 2px !important;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .aurora-text {
    background: linear-gradient(45deg, #000000, #333333) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }
}

/* Enhanced ripple effect for better UX */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Custom Typography Classes */
.font-heading {
  font-family: var(--font-heading);
}

.font-subheading {
  font-family: var(--font-subheading);
}

.font-body {
  font-family: var(--font-body);
}

.font-description {
  font-family: var(--font-description);
}

/* Apply Adobe Clean fonts to specific elements */
h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 800; /* Adobe Clean Extra Bold */
}

h3,
h4,
h5,
h6 {
  font-family: var(--font-subheading);
  font-weight: 700; /* Adobe Clean Bold (600 not available, use 700) */
}

.aurora-text {
  font-family: var(--font-heading);
  font-weight: 800; /* Adobe Clean Extra Bold */
}

.brand-text {
  font-family: var(--font-heading);
  font-weight: 800; /* Adobe Clean Extra Bold */
}

/* Section labels like "FEATURES" */
.section-label,
.uppercase {
  font-family: var(--font-subheading);
  font-weight: 700; /* Adobe Clean Bold (600 not available, use 700) */
}

/* Trust message and descriptions */
.trust-message,
.description-text {
  font-family: var(--font-description);
  font-weight: 400; /* Adobe Clean Regular */
}

/* Navigation and UI elements */
nav {
  font-family: var(--font-body);
  font-weight: 400; /* Adobe Clean Regular */
}

/* Button and CTA styling */
button,
.btn {
  font-family: var(--font-body);
  font-weight: 700; /* Adobe Clean Bold (500 not available, use 700) */
}

/* Comprehensive Adobe Clean application */
body,
html,
p,
span,
div,
a,
input,
textarea,
select,
label,
.font-sans {
  font-family: "Adobe Clean", -apple-system, BlinkMacSystemFont, "Segoe UI",
  Roboto, sans-serif !important;
}

/* Adobe Clean font weight classes */
.font-light {
  font-weight: 400; /* Adobe Clean Regular */
}

.font-normal {
  font-weight: 400; /* Adobe Clean Regular */
}

.font-medium {
  font-weight: 700; /* Adobe Clean Bold (500 not available) */
}

.font-semibold {
  font-weight: 700; /* Adobe Clean Bold (600 not available) */
}

.font-bold {
  font-weight: 700; /* Adobe Clean Bold */
}

.font-extrabold {
  font-weight: 800; /* Adobe Clean Extra Bold */
}

.font-black {
  font-weight: 900; /* Adobe Clean Black */
}

/* Ensure all text sizes use Adobe Clean */
.text-xs,
.text-sm,
.text-base,
.text-lg,
.text-xl,
.text-2xl,
.text-3xl,
.text-4xl,
.text-5xl,
.text-6xl,
.text-7xl {
  font-family: "Adobe Clean", -apple-system, BlinkMacSystemFont, "Segoe UI",
  Roboto, sans-serif !important;
}

/* Performance optimizations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading state styles */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
  );
  animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
