/* Custom smooth scrolling and global transitions */
:root {
    --brand-navy: #0F172A;
    --brand-gold: #EAB308;
}

body {
    scrollbar-width: thin;
    scrollbar-color: var(--brand-gold) var(--brand-navy);
}


/* Custom Webkit scrollbar for premium feel */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--brand-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-gold);
    border-radius: 10px;
}

/* Glassmorphism utility */
.glass-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(234, 179, 8, 0.4);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5), 0 0 20px rgba(234, 179, 8, 0.1);
}

/* Animated Gradient Text */
.text-gradient-animate {
    background: linear-gradient(
        to right,
        #EAB308 20%,
        #FDE68A 40%,
        #B45309 60%,
        #EAB308 80%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Smooth link hover effect */
a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Performance optimization for animations */
.aos-animate {
    will-change: transform, opacity;
}

/* Aggressive button pulsate */
@keyframes gold-glow {
    0% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(234, 179, 8, 0); }
    100% { box-shadow: 0 0 0 0 rgba(234, 179, 8, 0); }
}

.animate-aggressive-pulse {
    animation: gold-glow 2s infinite;
}

/* Hero 3D Container Glow */
#hero-3d-object {
    position: relative;
}

#hero-3d-object::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.2), transparent 70%);
    pointer-events: none;
    z-index: -1;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.8; }
}

/* Additional animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

/* Grid improvements */
@media (max-width: 1024px) {
    .pricing-card-featured {
        transform: scale(1) !important;
    }
}

/* Mobile Specific Refinements */
@media (max-width: 768px) {
    :root {
        --mobile-padding: 1.5rem;
    }

    section {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    h1 {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }

    .hero-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .mobile-menu-drawer {
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(20px);
    }
}

/* Ensure no horizontal scroll */
body, html {
    overflow-x: hidden;
    width: 100%;
}
