/* assets/css/style.css */
:root {
    --accent: #ffb703;
    --accent-2: #00d4ff;
    --bg-1: #050417;
    --glass: rgba(255,255,255,0.06);
    --card: rgba(255,255,255,0.03);
    --neon: 0 0 20px rgba(255,183,3,0.25);
}

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

html, body {
    overflow-x: hidden !important;
    font-family: 'Segoe UI', Roboto, system-ui, -apple-system;
}

body {
    background: radial-gradient(1200px 600px at 10% 10%, rgba(0,212,255,0.06), transparent),
                radial-gradient(900px 500px at 90% 90%, rgba(255,183,3,0.03), transparent),
                linear-gradient(180deg,#071029 0%, #07172a 60%);
    color: #ffffff;
}

/* BLOBS */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    pointer-events: none;
    max-width: 100vw;
    overflow: hidden;
}

.blob.b1 {
    width: 480px;
    height: 480px;
    left: -100px;
    top: -80px;
    background: linear-gradient(45deg, var(--accent), #ff6f61);
}

.blob.b2 {
    width: 380px;
    height: 380px;
    right: -110px;
    bottom: -60px;
    background: linear-gradient(45deg, var(--accent-2), #4ade80);
}

/* NAVBAR */
.navbar {
    background: linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    backdrop-filter: blur(6px);
}

.brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid rgba(255,255,255,0.06);
}

.navbar-nav {
    flex-wrap: wrap !important;
}

/* HERO */
.hero {
    padding: 80px 0 60px;
    position: relative;
    z-index: 2;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--neon);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.05);
}

.hero-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.typed-cursor {
    opacity: 1;
    font-weight: 700;
}

/* BUTTONS */
.btn-neon {
    background: linear-gradient(90deg, var(--accent), #ff6f61);
    box-shadow: 0 10px 30px rgba(255,111,97,0.12),
                0 0 30px rgba(255,183,3,0.08);
    border-radius: 14px;
    color: #08101b;
    font-weight: 700;
}
.btn-neon:hover {
    color: #08101b;
    box-shadow: 0 10px 30px rgba(255,111,97,0.3),
                0 0 40px rgba(255,183,3,0.2);
}

.btn-outline-ghost {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    color: inherit;
}
.btn-outline-ghost:hover {
    background: rgba(255,255,255,0.05);
    color: inherit;
}

/* FEATURE CARDS */
.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border-radius: 16px;
    padding: 22px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* PRICING */
.pricing {
    border-radius: 14px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
}

.pulse {
    animation: pulse 2.2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* TOAST */
.live-toast {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 1050;
    background: linear-gradient(90deg, #06202b, #1b2f46);
    border-radius: 12px;
    padding: 14px 18px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(2,6,23,0.6);
}

/* TESTIMONIAL */
.testimonial {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff !important;
}
.testimonial p, .testimonial small {
    color: #cbd5e1 !important;
}

/* ACCORDION (Dark Theme Fix) */
.accordion-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
}
.accordion-button {
    background: transparent !important;
    color: #fff !important;
    box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
    color: var(--accent) !important;
}
.accordion-button::after {
    filter: invert(1);
}
.accordion-body {
    color: #cbd5e1;
}

/* SECTIONS */
.bg-dark-section {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* FOOTER */
footer {
    background: linear-gradient(180deg,#020617,#051227);
    padding: 40px 0;
    color:#9fb3d6;
}
footer a {
    color: #00d4ff;
    text-decoration: none;
}
footer a:hover {
    color: #ffb703;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    font-size: 2.3rem;
    text-decoration: none;
    animation: pulse 2s infinite;
    color: #00ff88;
    text-shadow: 0 0 10px #00ff88,
                0 0 20px #00ff88,
                0 0 30px #00ff88,
                0 0 40px #00ff88;
    border-radius: 50%;
    padding: 12px 16px;
    background: rgba(0,255,136,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 70px;
    max-height: 70px;
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.25) rotate(-10deg);
    text-shadow: 0 0 20px #00ff88, 0 0 40px #00ff88, 0 0 60px #00ff88, 0 0 80px #00ff88;
    box-shadow: 0 0 30px #00ff88, 0 0 60px #00ff88, 0 0 90px #00ff88;
}

/* MOBILE FIXES */
@media (max-width: 768px) {
    .blob {
        display: none !important;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    .navbar-nav {
        text-align: center;
        width: 100%;
    }
    .whatsapp-float {
        right: 15px;
        bottom: 15px;
        font-size: 2rem;
    }
}
