/* BeastBrowser Custom Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #374151;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #FF6B00, #D72638);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #e55a00, #c01f2e);
}

/* Glass Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(to right, #FF6B00, #D72638);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations - DISABLED (No up-down movement) */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(0px);
    }
}

.animate-float {
    animation: none;
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }
}

.animate-pulse-slow {
    animation: none;
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(0);
    }
}

.animate-bounce-slow {
    animation: bounce-slow 3s ease-in-out infinite;
}

/* Disable all bounce animations - No up/down movement */
.animate-bounce {
    animation: none !important;
}

.group:hover .group-hover\:animate-bounce {
    animation: none !important;
}

@keyframes fade-in-up {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: none;
}

@keyframes scale-in {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-scale-in {
    animation: none;
}

/* DISABLED - Duplicate removed */

/* Infinite Scroll Animation */
@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
    }
}

.animate-infinite-scroll {
    animation: infinite-scroll 30s linear infinite;
    width: max-content;
}

.animate-infinite-scroll:hover {
    animation-play-state: paused;
}

/* Card Hover Effect */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(to right, #FF6B00, #D72638);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Loading Spinner */
.spinner {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.alert-success {
    background-color: #d1fae5;
    border: 1px solid #6ee7b7;
    color: #047857;
}

.alert-error {
    background-color: #fee2e2;
    border: 1px solid #fca5a5;
    color: #dc2626;
}

.alert-warning {
    background-color: #fef3c7;
    border: 1px solid #fcd34d;
    color: #d97706;
}

.alert-info {
    background-color: #dbeafe;
    border: 1px solid #93c5fd;
    color: #1d4ed8;
}

/* Form Styles */
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    color: white;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #FF6B00;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #FF6B00;
    position: relative;
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #FF6B00, #D72638);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Testimonial Card */
.testimonial-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(to right, #FF6B00, #D72638);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Comprehensive Responsive Styles */
@media (max-width: 1024px) {

    /* Tablets */
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    /* Mobile devices */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    ::-webkit-scrollbar {
        width: 4px;
    }

    /* Typography adjustments */
    h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Button sizes */
    .btn-primary,
    .btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    /* Card padding */
    .pricing-card,
    .testimonial-card {
        padding: 1.25rem;
    }

    /* Remove large gaps */
    section {
        padding: 2rem 0;
    }

    /* Make images responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure text doesn't overflow */
    p,
    li,
    span {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 640px) {

    /* Small mobile devices */
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.625rem 1.25rem;
        font-size: 0.8125rem;
        width: 100%;
        text-align: center;
    }

    .pricing-card,
    .testimonial-card {
        padding: 1rem;
    }

    /* Stack flex items - REMOVED as it breaks navbar */
    /* .flex {
        flex-direction: column;
    } */

    /* Full width inputs */
    .form-input {
        width: 100%;
    }
}

/* Landscape orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .min-h-screen {
        min-height: auto;
    }
}

/* Touch-friendly targets */
@media (hover: none) and (pointer: coarse) {

    button,
    a,
    input,
    select,
    textarea {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #1a202c;
        color: #e2e8f0;
    }
}/* BeastBrowser Global Animations */

/* Simple Fade In Animation */
@keyframes simpleFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Scale Animations */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleInBig {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Slide Animations */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Rotate Animations */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

/* Bounce Animation */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/* Float Animation - DISABLED */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(0px);
  }
}

/* Pulse Animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Red Glow Background Animation */
@keyframes redGlow {
  0% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1),
                0 0 40px rgba(255, 0, 0, 0.1),
                0 0 60px rgba(255, 0, 0, 0.05);
  }
  50% {
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2),
                0 0 60px rgba(255, 0, 0, 0.15),
                0 0 90px rgba(255, 0, 0, 0.1);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.1),
                0 0 40px rgba(255, 0, 0, 0.1),
                0 0 60px rgba(255, 0, 0, 0.05);
  }
}

/* Background Gradient Animation */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Utility Classes */
.animate-simple-fade {
  animation: simpleFadeIn 0.8s ease-out forwards;
}

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

.animate-scale-in {
  animation: scaleIn 0.5s ease-out forwards;
}

.animate-scale-in-big {
  animation: scaleInBig 0.7s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.animate-rotate-in {
  animation: rotateIn 0.6s ease-out forwards;
}

.animate-bounce-in {
  animation: bounceIn 0.8s ease-out forwards;
}

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

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradientShift 3s ease infinite;
}

.animate-red-glow {
  animation: redGlow 3s ease-in-out infinite;
}

.bg-red-glow {
  position: relative;
  background: rgba(255, 0, 0, 0.03);
}

.bg-red-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 0, 0, 0.08) 0%, transparent 70%);
  animation: redGlow 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Delay Classes */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }

/* Scroll Animation Base */
.scroll-animate {
  opacity: 0;
}

.scroll-animate.animated {
  opacity: 1;
}

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

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-glow {
  transition: box-shadow 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.5);
}

/* Stagger Animation */
.stagger-item {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }
.stagger-item:nth-child(5) { animation-delay: 0.5s; }
.stagger-item:nth-child(6) { animation-delay: 0.6s; }
.stagger-item:nth-child(7) { animation-delay: 0.7s; }
.stagger-item:nth-child(8) { animation-delay: 0.8s; }

/* Mobile Optimizations */
@media (max-width: 768px) {
  .animate-simple-fade {
    animation-duration: 0.5s;
  }
  
  .animate-float {
    animation-duration: 4s;
  }
  
  .animate-red-glow {
    animation-duration: 4s;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* GLOBAL ANIMATION DISABLE - Override all animations (Colors NOT affected) */

/* Disable ALL keyframe animations except essential ones */
.animate-fade-in-up,
.animate-fadeInUp,
.animate-float,
.animate-pulse,
.animate-pulse-slow,
.animate-bounce,
.animate-bounce-slow,
.animate-scale-in,
.animate-spin-slow,
.animate-fade-in,
.animate-slide-in,
.animate-zoom-in {
    animation: none !important;
    /* DON'T override opacity or transform - let original CSS handle it */
}

/* Allow ONLY these essential animations */
.animate-infinite-scroll {
    animation: infinite-scroll 30s linear infinite !important;
}

@keyframes infinite-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* Red glow animation - KEEP THIS */
.animate-red-glow,
.bg-red-glow {
    animation: redGlow 4s ease-in-out infinite !important;
}

@keyframes redGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Disable all translateY animations */
@keyframes fadeInUp {
    from, to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes bounce-slow {
    0%, 50%, 100% {
        transform: translateY(0);
    }
}

/* Keep hover effects but remove animation */
.group:hover .group-hover\:animate-bounce {
    animation: none !important;
}

/* Simple fade - instant (keep original opacity) */
.animate-simple-fade {
    animation: none !important;
}

/* Disable observer animations (keep colors intact) */
[style*="animation-play-state"] {
    animation: none !important;
}
