/* Genotropin Genius - Custom Styles */
/* Additional styles to complement Tailwind CSS */

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

/* Loading screen */
#loading-screen {
    transition: all 0.3s ease-in-out;
}

/* Enhanced loading animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

/* Apple-style animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apple-style animation classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

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

/* Apple-style micro-interactions */
.hover-lift {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hover-scale {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hover-glow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow:hover {
    box-shadow: 0 0 0 4px rgba(0, 0, 201, 0.1);
}

/* Apple-style button interactions */
.btn-apple {
    position: relative;
    overflow: hidden;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-apple::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-apple:hover::before {
    left: 100%;
}

.btn-apple:active {
    transform: scale(0.98);
}

/* Apple-style scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Apple-style focus states for accessibility */
:focus-visible {
    outline: 2px solid #0000C9;
    outline-offset: 2px;
    border-radius: 0.5rem;
    transition: outline 0.2s ease;
}

/* Enhanced focus states for interactive elements */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #0000C9;
    outline-offset: 2px;
    border-radius: 0.5rem;
    box-shadow: 0 0 0 4px rgba(0, 0, 201, 0.1);
}

/* Apple-style reduced motion support */
@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;
    }
}

/* Apple-style high contrast mode support */
@media (prefers-contrast: high) {
    .bg-primary-500 {
        background-color: #0000C9 !important;
        color: white !important;
    }
    
    .text-primary-500 {
        color: #0000C9 !important;
    }
    
    .border-primary-500 {
        border-color: #0000C9 !important;
    }
}

/* Apple-style scrolling state */
body.scrolling {
    scroll-behavior: smooth;
}

body.scrolling * {
    pointer-events: none;
}

/* Apple-style mobile optimizations */
@media (max-width: 768px) {
    /* Enhanced touch targets */
    button, a, input, select, textarea {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Apple-style mobile navigation */
    #mobile-menu {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    
    /* Apple-style mobile cards */
    .hover-lift:hover {
        transform: none;
    }
    
    /* Apple-style mobile buttons */
    .btn-apple:active {
        transform: scale(0.95);
    }
}

/* Light theme only - no dark mode */

/* Enhanced FAQ animations */
.faq-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
}

.faq-content {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 0;
    overflow: hidden;
}

.faq-content.open {
    max-height: 200px;
}

/* Enhanced trust indicator animations */
.trust-indicator {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-indicator:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px -5px rgba(0, 0, 201, 0.15);
}

/* Enhanced button loading states */
.btn-loading {
    position: relative;
    overflow: hidden;
}

.btn-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%;
    }
}

/* Enhanced scroll animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced focus states for better accessibility */
.focus-enhanced:focus {
    outline: 2px solid #0000C9;
    outline-offset: 4px;
    border-radius: 0.5rem;
    box-shadow: 0 0 0 4px rgba(0, 0, 201, 0.1);
}

/* Professional gradient text effects */
.gradient-text {
    background: linear-gradient(135deg, #0000C9 0%, #0066FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Professional card hover effects */
.professional-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 201, 0.1);
}

.professional-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 201, 0.1);
    border-color: rgba(0, 0, 201, 0.2);
}

/* Professional button enhancements */
.btn-professional {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-professional:hover::before {
    left: 100%;
}

/* Professional navigation underline animation */
.nav-underline {
    position: relative;
}

.nav-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0000C9, #0066FF);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-underline:hover::after {
    width: 100%;
}

/* Professional loading states */
.loading-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

/* Professional glass morphism */
.glass-morphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Professional shadow system */
.shadow-professional {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 201, 0.1), 0 2px 4px -1px rgba(0, 0, 201, 0.06);
}

.shadow-professional-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 201, 0.1), 0 4px 6px -2px rgba(0, 0, 201, 0.05);
}

/* Professional ripple effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Professional navbar scroll effects */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Professional form enhancements */
.form-input-professional {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.form-input-professional:focus {
    border-color: #0000C9;
    box-shadow: 0 0 0 3px rgba(0, 0, 201, 0.1);
    transform: translateY(-1px);
}

/* Professional section spacing */
.section-professional {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section-professional {
        padding: 4rem 0;
    }
}

/* Skip link */
.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;
}

.sr-only:focus {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 50;
    width: auto;
    height: auto;
    padding: 0.5rem 1rem;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    background: #0000C9;
    color: white;
    border-radius: 0.5rem;
}

/* Mobile menu animations */
#mobile-menu {
    transition: all 0.3s ease-in-out;
    transform: translateY(-10px);
    opacity: 0;
}

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

/* Navbar scroll effect */
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Hover effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom button effects */
.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%;
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.card-hover:hover::before {
    opacity: 1;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

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

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced button effects */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-enhanced::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-enhanced:hover::before {
    left: 100%;
}

/* Enhanced card effects */
.card-enhanced {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.card-enhanced:hover::before {
    opacity: 1;
}

/* Performance optimizations */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

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

/* iOS Design System */
:root {
    --ios-radius-small: 12px;
    --ios-radius-medium: 16px;
    --ios-radius-large: 20px;
    --ios-shadow: 0 4px 16px rgba(0,0,0,0.08);
    --ios-shadow-elevated: 0 8px 32px rgba(0,0,0,0.12);
    --ios-blur: blur(20px) saturate(180%);
    --ios-spring: cubic-bezier(0.5, 0.75, 0, 1);
    --ios-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* iOS Glass Morphism */
.glass-effect {
    backdrop-filter: var(--ios-blur);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Touch effects completely disabled */

/* Mobile Menu Animations */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    /* Ensure menu doesn't cause horizontal scroll */
    max-width: 100vw;
    box-sizing: border-box;
}

#mobile-menu.menu-open {
    max-height: 100vh;
    opacity: 1;
}

#mobile-menu a {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

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

/* Mobile menu responsive improvements */
@media (max-width: 320px) {
    #mobile-menu {
        padding: 0 1rem;
    }
    
    #mobile-menu a {
        font-size: 0.875rem;
        padding: 0.75rem 0;
    }
}

/* Ensure mobile menu doesn't interfere with content */
@media (max-width: 768px) {
    main {
        padding-top: 4rem;
    }
}

/* iOS-style backdrop blur utility */
.backdrop-blur-ios {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* iOS-style text colors */
.text-ios-text {
    color: #1d1d1f;
}

.border-ios-separator {
    border-color: rgba(0, 0, 0, 0.1);
}

/* iOS Safe Area Support */
@supports (padding: max(0px)) {
    .ios-safe-top {
        padding-top: max(env(safe-area-inset-top), 20px);
    }
    
    .ios-safe-bottom {
        padding-bottom: max(env(safe-area-inset-bottom), 20px);
    }
}

/* iOS Scroll Behavior */
.ios-scroll {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* iOS Button Press Effect */
.btn-ios:active {
    transform: scale(0.96);
    transition: transform 0.1s ease-out;
}

/* iOS Card Hover Effects */
.card-ios {
    transition: all 0.3s var(--ios-ease);
}

.card-ios:hover {
    transform: translateY(-4px);
    box-shadow: var(--ios-shadow-elevated);
}

/* iOS Typography Enhancements */
.text-ios-large-title {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.text-ios-title-1 {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
    font-weight: 400;
    letter-spacing: -0.3px;
}

/* iOS Status Bar Styling */
.ios-status-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding: 2px 0;
}

/* iOS Navigation Enhancements */
.nav-ios {
    backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* iOS Product Card Styling */
.product-card-ios {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--ios-shadow);
    transition: all 0.3s var(--ios-ease);
}

.product-card-ios:hover {
    transform: translateY(-8px);
    box-shadow: var(--ios-shadow-elevated);
}

/* iOS Button Styling */
.btn-ios-primary {
    background: linear-gradient(135deg, #0000C9 0%, #0000A3 100%);
    color: white;
    border: none;
    border-radius: var(--ios-radius-large);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.2s var(--ios-ease);
    box-shadow: 0 4px 16px rgba(0, 0, 201, 0.3);
}

.btn-ios-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 201, 0.4);
}

.btn-ios-primary:active {
    transform: scale(0.96);
}

/* iOS Form Inputs */
.input-ios {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--ios-radius-medium);
    padding: 12px 16px;
    font-size: 17px;
    transition: all 0.2s var(--ios-ease);
}

.input-ios:focus {
    border-color: #0000C9;
    box-shadow: 0 0 0 3px rgba(0, 0, 201, 0.1);
    outline: none;
}

/* iOS Testimonials Carousel */
.testimonials-ios {
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.testimonial-slide-ios {
    scroll-snap-align: center;
    flex: 0 0 100%;
}

/* iOS Page Control Dots */
.page-control-ios {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.page-dot-ios {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s var(--ios-ease);
}

.page-dot-ios.active {
    background: #0000C9;
    transform: scale(1.2);
}

/* iOS Loading Animation */
.loading-ios {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 201, 0.3);
    border-radius: 50%;
    border-top-color: #0000C9;
    animation: spin-ios 1s ease-in-out infinite;
}

@keyframes spin-ios {
    to {
        transform: rotate(360deg);
    }
}

/* iOS Smooth Scrolling */
html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Prevent Mobile Zoom and Reduce Touch Effects */
* {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* Allow text selection for input fields and text areas */
input, textarea, [contenteditable] {
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevent zoom on double tap */
* {
    touch-action: manipulation;
}

/* Reduce touch feedback */
button, a, [role="button"] {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    touch-action: manipulation;
}

/* Prevent zoom on input focus */
input, textarea, select {
    font-size: 16px;
    transform: scale(1);
    transition: transform 0.1s ease-out;
}

input:focus, textarea:focus, select:focus {
    transform: scale(1);
    zoom: 1;
}

/* Additional Mobile Zoom Prevention */
body {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Prevent zoom on double tap for specific elements */
.no-zoom {
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Completely disable touch feedback for buttons */
.btn-apple, button, a {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Prevent zoom on form elements */
input, textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

/* iOS Touch Targets */
.touch-target-ios {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Touch effects completely disabled */

/* FAQ Accordion Animations */
.faq-content {
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.faq-icon {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Menu Animations */
.mobile-menu-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(10px);
}

.mobile-menu-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth carousel transitions */
#testimonials-carousel {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Touch effects completely disabled */

/* Cool Minimal Ad Banner Styles for HghPowerStore.org */
.ad-banner-container {
    position: relative;
    overflow: hidden;
}

/* Glass morphism effect */
.ad-banner-desktop,
.ad-banner-mobile {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cool hover effects */
.ad-banner-desktop:hover,
.ad-banner-mobile:hover {
    transform: translateY(-4px) scale(1.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Professional click effects */
.ad-banner-desktop:active,
.ad-banner-mobile:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* Subtle glow animation */
@keyframes subtle-glow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.ad-banner-desktop .bg-gradient-to-r,
.ad-banner-mobile .bg-gradient-to-r {
    animation: subtle-glow 4s ease-in-out infinite;
}

/* Cool button hover states */
.ad-banner-desktop button:hover,
.ad-banner-mobile button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Enhanced logo hover effects */
.ad-banner-desktop .group:hover .lottie-bolt,
.ad-banner-mobile .group:hover .lottie-bolt-mobile {
    transform: scale(1.1) rotate(5deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth transitions for all elements */
.ad-banner-desktop *,
.ad-banner-mobile * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Accessibility - reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .ad-banner-desktop,
    .ad-banner-mobile,
    .ad-banner-desktop button,
    .ad-banner-mobile button,
    .ad-banner-desktop .lottie-bolt,
    .ad-banner-mobile .lottie-bolt-mobile {
        transition: none;
        animation: none;
        transform: none;
    }
}

/* Lottie Animation Styles for Ad Banners */
.lottie-bolt {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lottie-bolt-mobile {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ensure Lottie animations are centered */
.lottie-bolt svg,
.lottie-bolt-mobile svg {
    width: 100%;
    height: 100%;
}

/* Lottie animation hover effects */
.ad-banner-desktop:hover .lottie-bolt,
.ad-banner-mobile:hover .lottie-bolt-mobile {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}