.blur-xs {
    --tw-blur: blur(2px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

main {
    margin: 0px !important;
}

.drawer-content {
    padding: 0px !important;
}

/* Hero section enhancements */
.hero {
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.animated-gradient {
    background: linear-gradient(
        -45deg, 
        rgba(var(--color-primary-rgb), 0.8),
        rgba(var(--color-secondary-rgb), 0.8),
        rgba(var(--color-accent-rgb), 0.8),
        rgba(var(--color-primary-rgb), 0.8)
    );
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Fade-in animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.2s;
}

.fade-in-delay-2 {
    animation-delay: 0.4s;
}

.fade-in-delay-3 {
    animation-delay: 0.6s;
}

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

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

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

/* Responsive typography */
@media (max-width: 640px) {
    h1.hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    p.hero-subtitle {
        font-size: 1rem;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Show scrollbar on hover */
.hover-scroll::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.hover-scroll:hover::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Pulse animation for CTA buttons */
.pulse-on-hover:hover {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(var(--color-primary-rgb), 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(var(--color-primary-rgb), 0);
    }
}

/* Improved badges */
.custom-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1;
    transition: all 0.2s ease;
}

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

/* Custom button styles */
.btn-primary-outline {
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background: var(--color-primary);
    color: white;
}

/* Image hover zoom effect */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

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

/* Improved section spacing */
.section-spacing {
    padding: 5rem 0;
}

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