body {
    font-family: 'Noto Sans', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Noto Serif', serif;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark .glass-card {
    background: rgba(34, 28, 16, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

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

.btn-shine {
    position: relative;
    overflow: hidden;
}

.btn-shine::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.btn-shine:hover::after {
    left: 120%;
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px) scale(1.02);
}

.gradient-text {
    background: linear-gradient(135deg, #d4af37, #df7e59, #4a7c59, #d4af37);
    background-size: 300% 300%;
    animation: gradientMove 8s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.grad-premium {
    background: linear-gradient(135deg, #d4af37, #df7e59);
}

.grad-soft {
    background: linear-gradient(135deg, #fdfaf6, #fff3cd);
}

.dark .grad-soft {
    background: linear-gradient(135deg, #1a160f, #2d2618);
}

.hero-overlay {
    background: radial-gradient(circle at center, rgba(18, 16, 14, 0.2) 0%, rgba(18, 16, 14, 0.7) 100%);
}

.blob-bg {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.blob-rose {
    background: radial-gradient(circle, rgba(248, 215, 218, 0.3) 0%, transparent 70%);
}

.blob-mint {
    background: radial-gradient(circle, rgba(212, 237, 218, 0.3) 0%, transparent 70%);
}

/* FAQ Accordion Styles */
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dark .faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
