/* Cursor Effects Styles */
.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    opacity: 0;
    transform: translate(-50%, -50%);
}

.cursor-glow.active {
    opacity: 1;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
}

/* Enhanced cursor effects for interactive elements */
button:hover ~ .cursor-glow,
a:hover ~ .cursor-glow,
.service-card:hover ~ .cursor-glow,
.pricing-card:hover ~ .cursor-glow,
.portfolio-item:hover ~ .cursor-glow {
    opacity: 1;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
}

/* Custom cursor for clickable elements */
button,
a,
.service-card,
.pricing-card,
.portfolio-item,
.chatbot-bubble,
.sticky-cta button {
    cursor: none;
}

/* Hide default cursor on interactive elements */
button:hover,
a:hover,
.service-card:hover,
.pricing-card:hover,
.portfolio-item:hover,
.chatbot-bubble:hover,
.sticky-cta button:hover {
    cursor: none;
}

/* Responsive cursor behavior */
@media (max-width: 768px) {
    .cursor-glow {
        display: none;
    }
    
    button,
    a,
    .service-card,
    .pricing-card,
    .portfolio-item,
    .chatbot-bubble,
    .sticky-cta button {
        cursor: pointer;
    }
    
    button:hover,
    a:hover,
    .service-card:hover,
    .pricing-card:hover,
    .portfolio-item:hover,
    .chatbot-bubble:hover,
    .sticky-cta button:hover {
        cursor: pointer;
    }
}

/* Additional premium effects */
.service-card,
.pricing-card,
.portfolio-item {
    position: relative;
    overflow: hidden;
}

.service-card::after,
.pricing-card::after,
.portfolio-item::after {
    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.6s ease;
}

.service-card:hover::after,
.pricing-card:hover::after,
.portfolio-item:hover::after {
    left: 100%;
}

/* Enhanced button effects */
.hero-cta,
.service-cta,
.pricing-cta,
.submit-btn {
    position: relative;
    overflow: hidden;
}

.hero-cta::before,
.service-cta::before,
.pricing-cta::before,
.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hero-cta:hover::before,
.service-cta:hover::before,
.pricing-cta:hover::before,
.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Text selection effects */
::selection {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

/* Focus effects for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Loading states */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Hover state enhancements */
.nav-link:hover,
.footer-section ul li a:hover {
    transform: translateX(5px);
}

.service-icon:hover,
.contact-icon:hover {
    transform: rotate(5deg) scale(1.1);
}

/* Parallax-like effects for depth */
.hero-background .gradient-orb {
    transition: transform 0.3s ease;
}

.hero-background .gradient-orb:hover {
    transform: scale(1.1);
}

/* Enhanced modal animations */
.modal.active .modal-content {
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Disable transitions for performance on mobile */
@media (max-width: 768px) {
    * {
        transition: none;
    }
    
    .cursor-glow {
        display: none;
    }
} 