@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0a0a0a;
    --primary-gold: #d4af37;
    --secondary-gold: #b8860b;
    --text-white: #f5f5f5;
    --text-muted: #a0a0a0;
    --accent-glow: rgba(212, 175, 55, 0.3);
    --card-bg: rgba(255, 255, 255, 0.03);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('assets/global-bg.png');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0.05) 40%, transparent 70%);
    filter: blur(80px);
    z-index: 100;
    pointer-events: none;
    animation: divineGlow 8s ease-in-out infinite alternate;
}

@keyframes divineGlow {
    from { opacity: 0.4; transform: scale(1); }
    to { opacity: 0.7; transform: scale(1.1); }
}

h1, h2, h3, .serif {
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--primary-gold);
    background: linear-gradient(to right, #d4af37, #f7e08a, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: #000;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--accent-glow);
    filter: brightness(1.1);
}

.pulse-btn {
    animation: pulseGlow 2s infinite;
    position: relative;
    z-index: 10;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
        transform: scale(1);
    }
}



/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    padding: 0;
    overflow: hidden;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
}

.hero-banner-container {
    position: relative;
    width: 100%;
    line-height: 0;
}

.hero-banner-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 40%, rgba(212, 175, 55, 0.1) 60%, transparent 80%);
    pointer-events: none;
    z-index: 5;
    mix-blend-mode: overlay;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
    mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
    -webkit-mask-image: radial-gradient(circle at center, black 50%, transparent 95%);
}

.hero-cta-overlay {
    position: absolute;
    bottom: 5%;
    right: 15%;
    width: 25%;
    height: 10%;
    /* border: 2px solid red; /* Debug */
    cursor: pointer;
    z-index: 10;
}

/* Pricing Card */
.pricing-hero {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
    border-radius: 15px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.5rem;
}

.price-new {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

/* Sections */
section {
    padding: 100px 0;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.detail-section {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(8px);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 15px;
    color: var(--text-muted);
    display: none;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

@media (max-width: 768px) {
    .hero {
        padding-top: 60px;
    }
    .pricing-hero {
        flex-direction: column;
        width: 100%;
    }
}
