/* --- NEON GOLD LUXURY THEME --- */
:root {
    --bg-body: #050505;
    --bg-card: rgba(20, 20, 20, 0.85);
    --neon-gold: #FFD700;       
    --neon-glow: rgba(255, 215, 0, 0.4);
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --border-glass: rgba(255, 215, 0, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }

body {
    background-color: var(--bg-body);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    /* Tech Grid Background */
    background-image: 
        linear-gradient(rgba(255, 215, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3 { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; }

.glow-text {
    color: var(--neon-gold);
    text-shadow: 0 0 15px var(--neon-glow);
}

/* --- LOGO ZOOM FIX --- */
.logo-wrapper {
    overflow: hidden; 
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 5px;
}
.nav-logo-size {
    height: 70px; 
    width: 140px; 
}
.footer-logo-size {
    height: 140px;
    width: 250px;
    margin: 0 auto 20px auto;
}
.logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transform: scale(2.5); /* KEEPS THE LOGO ZOOMED IN */
}

/* --- BUTTONS --- */
@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

.btn-gold {
    background: var(--neon-gold);
    color: #000;
    padding: 16px 40px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    display: inline-block;
    transition: 0.3s;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    animation: pulse-gold 2s infinite;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 0 30px var(--neon-gold); background: #fff; }

.btn-outline {
    border: 1px solid var(--neon-gold);
    color: var(--neon-gold);
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
    font-size: 0.95rem;
}
.btn-outline:hover { background: rgba(255, 215, 0, 0.1); color: #fff; }

.full-width { width: 100%; text-align: center; }
.mt-25 { margin-top: 25px; }
.no-shadow { box-shadow: none; animation: none; }

/* --- ORIGINAL NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-glass);
}
.nav-links a { color: #ddd; text-decoration: none; margin-left: 20px; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--neon-gold); }

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 20px;
    position: relative;
}
.hero::before {
    content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 60vw; height: 60vw; background: var(--neon-gold);
    filter: blur(150px); opacity: 0.1; z-index: -1;
}
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; }
.hero-subtitle { color:var(--neon-gold); letter-spacing:2px; text-transform:uppercase; margin-bottom:10px; font-weight:700; font-size:0.9rem; }
.hero-desc { color: var(--text-gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto 30px; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* --- TRUST BAR --- */
.trust-bar {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 40px;
    background: rgba(20,20,20,0.8); border-top: 1px solid var(--border-glass); border-bottom: 1px solid var(--border-glass);
    padding: 25px 5%; text-align: center;
}
.trust-item h3 { color: var(--neon-gold); font-size: 1.8rem; margin-bottom: 5px; }
.trust-item p { font-size: 0.85rem; color: #888; text-transform: uppercase; letter-spacing: 1px; }

/* --- SECTIONS --- */
.section { padding: 80px 5%; }
.section-title { text-align: center; margin-bottom: 50px; font-size: 2.5rem; }
.section-subtitle { text-align:center; color:#aaa; margin-top:-40px; margin-bottom:50px; }
.bg-dim { background: rgba(255,255,255,0.02); }

/* --- CARDS & GRID --- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
.glass-card {
    background: var(--bg-card); padding: 30px; border-radius: 15px; border: 1px solid var(--border-glass);
    transition: 0.4s; position: relative; backdrop-filter: blur(10px);
}
.glass-card:hover { transform: translateY(-5px); border-color: var(--neon-gold); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.glass-card i { font-size: 2.2rem; color: var(--neon-gold); margin-bottom: 15px; text-shadow: 0 0 15px var(--neon-glow); }
.glass-card h3 { margin-bottom: 10px; font-size: 1.3rem; color: #fff; }
.glass-card p { color: var(--text-gray); font-size: 0.95rem; line-height: 1.5; }
.center-text { text-align: center; }

/* --- DEMO IMAGES --- */
.demo-img { height:150px; background-position: center; background-size: cover; border-radius:10px; margin-bottom:20px; }
.demo-desc { margin-bottom:15px; font-size:0.9rem; }

/* --- HOW IT WORKS --- */
.step-number { 
    background: var(--neon-gold); color: #000; width: 35px; height: 35px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; font-weight: bold; margin: 0 auto 15px;
}

/* --- PRICING --- */
.pricing-container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.price-card {
    background: var(--bg-card); border: 1px solid var(--border-glass); border-radius: 20px; padding: 30px;
    width: 100%; max-width: 380px; position: relative; backdrop-filter: blur(10px); transition: 0.4s;
}
.price-card:hover { transform: translateY(-5px); border-color: var(--neon-gold); }
.price-card.premium {
    background: linear-gradient(160deg, rgba(30,30,30,0.95), rgba(10,10,10,0.95));
    border: 2px solid var(--neon-gold); box-shadow: 0 0 30px rgba(255, 215, 0, 0.1);
}
.vip-badge { position:absolute; top:-15px; left:50%; transform:translateX(-50%); background:var(--neon-gold); color:#000; padding:5px 20px; border-radius:20px; font-weight:bold; font-size:0.85rem; }
.price-header { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; margin-bottom: 15px; }
.plan-name { font-size: 1.4rem; color: #fff; margin-bottom: 5px; font-weight: 600; }
.plan-subtitle { color:#888; font-size:0.9rem; }
.price-tag { font-size: 2.5rem; font-family: 'Oswald', sans-serif; color: var(--neon-gold); }
.feature-list li { margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; color: #ccc; font-size: 0.9rem; }
.extra-note {
    background: rgba(255, 255, 255, 0.05); padding: 10px; border-radius: 8px; font-size: 0.8rem;
    color: #aaa; margin-top: 15px; border-left: 2px solid var(--neon-gold);
}
.tiny-text { font-size:0.8rem; color:#666; }
.info-icon { color:var(--neon-gold); }
.gold-icon { color:var(--neon-gold); }

/* --- FOOTER --- */
footer { text-align: center; padding: 50px 20px; background: #000; border-top: 1px solid #222; }
.social-links { display:flex; justify-content:center; gap:25px; margin-bottom:30px; }
.social-links a { color:#fff; font-size:1.8rem; transition:0.3s; }
.footer-text { color: #666; font-size: 0.9rem; line-height: 1.6; }
.gold-text { color:var(--neon-gold); font-weight:600; }
.copyright { color: #444; font-size: 0.8rem; margin-top:20px; }

/* --- FLOATING BUTTON --- */
.floating-wa {
    position: fixed; bottom: 25px; right: 25px; background: #25D366; color: white;
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 35px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 9999; transition: 0.3s;
    text-decoration: none; animation: pulse-green 2s infinite;
}
.floating-wa:hover { transform: scale(1.1); background: #128C7E; }
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    .navbar { flex-direction: column; padding: 15px; background: rgba(0,0,0,0.95); }
    .nav-links { margin-top: 15px; display: flex; gap: 15px; flex-wrap: wrap; justify-content: center; }
    .nav-links a { margin-left: 0; font-size: 0.85rem; }
    
    .logo-wrapper.nav-logo-size { height: 60px; width: 120px; }
    
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1rem; padding: 0 10px; }
    .hero-btns { flex-direction: column; width: 100%; align-items: center; }
    .btn-gold, .btn-outline { width: 100%; max-width: 300px; text-align: center; }
    
    .section { padding: 60px 5%; }
    .section-title { font-size: 2rem; margin-bottom: 40px; }
    
    .pricing-container { flex-direction: column; align-items: center; }
    .trust-bar { gap: 20px; justify-content: space-around; }
    .trust-item { width: 45%; } 
    .trust-item h3 { font-size: 1.5rem; }
}


/* --- HORIZONTAL SCROLLING DEMO --- */
.scrolling-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 10px 5px 30px 5px; /* Bottom padding for scrollbar space/shadow */
    scroll-snap-type: x mandatory; /* Makes it snap to cards */
    -webkit-overflow-scrolling: touch; /* Smooth scroll on iPhone */
    
    /* Hide Scrollbar for cleaner look */
    scrollbar-width: none; /* Firefox */
}
.scrolling-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Individual Card Styling in Slider */
.scroll-card {
    flex: 0 0 300px; /* Fixed Width: 300px per card */
    min-width: 300px;
    scroll-snap-align: center; /* Snaps card to center when scrolling stops */
    
    /* Inherit Glass Card Styles */
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-glass);
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.scroll-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Mobile specific adjustment: Show part of next card */
@media (max-width: 768px) {
    .scrolling-wrapper {
        justify-content: flex-start;
        padding-left: 5%; /* Align with screen edge */
        padding-right: 5%;
    }
    .scroll-card {
        flex: 0 0 85vw; /* Card takes 85% of screen width */
        min-width: 85vw;
        scroll-snap-align: start;
    }
}