/* 0017 - Violet Gold Premium Theme */
html { scroll-behavior: smooth; }
:root {
    --violet: #7c3aed;
    --gold: #f59e0b;
}

/* Smooth card lift */
.card-lift {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -12px rgba(124,58,237,0.25);
}

/* Gradient border card */
.card-gradient-border {
    position: relative;
    background: white;
    border-radius: 20px;
}
.card-gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #7c3aed, #a855f7, #f59e0b);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}
.card-gradient-border:hover::before { opacity: 1; }

/* Hero image float */
@keyframes gentleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(4px) rotate(-1deg); }
}
.animate-gentle { animation: gentleFloat 6s ease-in-out infinite; }

/* FAQ styles */
.faq-item { transition: all 0.3s; }
.faq-answer { animation: fadeInDown 0.35s ease-out; }
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #faf5ff; }
::-webkit-scrollbar-thumb { background: #c4b5fd; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #a78bfa; }

/* Pulse dot */
.pulse-dot {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
