/* Premium Gold and Black Animations */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 10s infinite alternate;
}

.animation-delay-2000 { animation-delay: 2s; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    background-color: #0a0a0a;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffffff;
}

/* Navbar Scrolled State */
header.scrolled {
    background-color: rgba(0, 0, 0, 0.95) !important;
    border-bottom: 1px solid rgba(0, 38, 255, 0.4);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* --- Clickable Animations --- */

/* 1. Generic Click Effect */
.clickable-element:active, 
button:active, 
a:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}

/* 2. Nav Links Underline Animation */
.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #0026FF;
    transition: width 0.3s ease;
}

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

/* 3. Button Hover Glow */
.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 38, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    box-shadow: 0 0 15px rgba(0, 38, 255, 0.2);
    transform: translateY(-2px);
}

/* 4. Feature Card Lift & Glow */
.feature-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 38, 255, 0.1);
}

/* 5. FAQ Rotation Icon Color */
.faq-toggle i {
    color: #0026FF;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 6. Input Focus Animation */
input, textarea {
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-bottom-color: #0026FF !important;
    padding-left: 8px;
}

/* Shimmer Animation for Text */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.text-shimmer {
    background: linear-gradient(90deg, #FFFFFF 0%, #0026FF 50%, #FFFFFF 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Mouse Glow Effect (Hero) */
.hero-glow {
    position: absolute;
    width: 600px;    height: 600px;
    background: radial-gradient(circle, rgba(0, 38, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.1s ease-out;
    filter: blur(40px);
}

/* Refined Section Borders */
section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 38, 255, 0.2), transparent);
}

/* Instagram Floating Button Animation */
@keyframes bounce-slow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

/* Luxury Monogram Pattern Background */
.bg-monogram {
    background-color: #0a0a0a;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300158F' fill-opacity='0.03'%3E%3Cpath d='M10 20h4l6 15 6-15h4v20h-4V25l-6 15h-1l-6-15v15h-3V20zm35 0h4v8l8-8h5l-9 9 10 11h-5l-8-9v9h-5V20z' /%3E%3Cpath d='M60 70h4l6 15 6-15h4v20h-4V75l-6 15h-1l-6-15v15h-3V70zm35 0h4v8l8-8h5l-9 9 10 11h-5l-8-9v9h-5V70z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-attachment: fixed;
}

/* Custom Selection Color */
::selection {
    background: #00158F;
    color: #fff;
}

.pricing-card {
    position: relative;
    transform: translate3d(0, 0, 0);
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.45s ease, border-color 0.45s ease;
    will-change: transform;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at 30% 10%, rgba(0, 38, 255, 0.20), transparent 55%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}

.pricing-card .pricing-head h3,
.pricing-card .pricing-head .pricing-price,
.pricing-card .pricing-head .pricing-note,
.pricing-card li {
    transition: transform 0.45s ease, letter-spacing 0.45s ease, opacity 0.45s ease;
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .pricing-card:hover {
        transform: translate3d(0, -14px, 0) scale(1.03);
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55), 0 0 35px rgba(0, 38, 255, 0.22);
        z-index: 30;
    }

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

    .pricing-card:hover .pricing-head h3 {
        transform: translate3d(0, -2px, 0);
        letter-spacing: 0.20em;
    }

    .pricing-card:hover .pricing-head .pricing-price {
        transform: translate3d(0, -2px, 0) scale(1.02);
    }

    .pricing-card:hover .pricing-head .pricing-note {
        transform: translate3d(0, -1px, 0);
        opacity: 0.95;
    }

    .pricing-card:hover li {
        transform: translate3d(6px, 0, 0);
    }

    .pricing-card:hover li:nth-child(1) { transition-delay: 30ms; }
    .pricing-card:hover li:nth-child(2) { transition-delay: 60ms; }
    .pricing-card:hover li:nth-child(3) { transition-delay: 90ms; }
    .pricing-card:hover li:nth-child(4) { transition-delay: 120ms; }
    .pricing-card:hover li:nth-child(5) { transition-delay: 150ms; }
}

@media (prefers-reduced-motion: reduce) {
    .pricing-card,
    .pricing-card::before,
    .pricing-card .pricing-head h3,
    .pricing-card .pricing-head .pricing-price,
    .pricing-card .pricing-head .pricing-note,
    .pricing-card li {
        transition: none;
    }
}
