/* ==========================================
   LUXURY AESTHETIC UPGRADE
   Feng Shui With Jackson - Premium Design System
   ========================================== */

:root {
    --luxury-gold-glow: rgba(212, 175, 55, 0.4);
    --luxury-emerald-glow: rgba(13, 77, 61, 0.15);
    --luxury-shadow-color: rgba(0, 0, 0, 0.1);
}

/* 1. PREMIUM TYPOGRAPHY ENHANCEMENTS */
h1, h2, h3 {
    letter-spacing: -0.02em;
    text-shadow: 0 0 1px rgba(0,0,0,0.05);
}

.logo {
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* 2. CARD AURA EFFECT (INTERACTIVE GLOW) */
.blog-card, .service-card, .calculator-box, .checklist-card {
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease, box-shadow 0.4s ease !important;
}

.blog-card::before, .service-card::before, .calculator-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(212, 175, 55, 0.08),
        transparent 40%
    );
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.blog-card:hover::before, .service-card:hover::before, .calculator-box:hover::before {
    opacity: 1;
}

/* 3. PREMIUM REVEAL ANIMATIONS */
.premium-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* 4. MESH GRADIENTS FOR SECTION BACKGROUNDS */
.hero, .page-header {
    background: linear-gradient(135deg, var(--emerald-deep), var(--emerald-medium)) !important;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background-image: 
        radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.2) 0, transparent 50%), 
        radial-gradient(at 50% 0%, rgba(13, 77, 61, 0.3) 0, transparent 50%), 
        radial-gradient(at 100% 0%, rgba(212, 175, 55, 0.2) 0, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* 5. SMOOTH NAVIGATION UNDERLINE (Luxury version) */
.nav-menu a:not(.btn-nav)::after {
    height: 1px !important;
    background: var(--champagne-gold) !important;
    opacity: 0.6;
}

/* 6. GLASSMORPHISM NAV REFINEMENT */
.navbar {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(25px) saturate(200%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
}

/* 7. CUSTOM CURSOR STYLES (Sync with main CSS but refined) */
.custom-cursor {
    border-width: 1px !important;
    background: rgba(212, 175, 55, 0.05);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* 8. BENTO-STYLE GRID ADJUSTMENTS (Blog) */
@media (min-width: 1024px) {
    .blog-grid {
        gap: 30px !important;
    }
    .blog-card {
        border-radius: 24px !important;
    }
}

/* 9. SUBTLE TEXTURE */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
    z-index: 9999;
}
