/* ===== Futuristic Theme Variables & Global Styles ===== */
:root {
    /* --futuristic-bg: #0a0a1a;
    --futuristic-surface: #1a1a2f;
    --futuristic-primary: #ffffff;
    / Changed from cyan to white /
    --futuristic-secondary: #cccccc;
    / Light grey /
    --futuristic-border: rgba(255, 255, 255, 0.15);
    --futuristic-text: #e0e0e0;
    --futuristic-text-muted: #8c8ca2;*/

    --futuristic-bg: #0a0a1a;

    --futuristic-surface: #1a1a2f;

    --futuristic-primary: #00f5d4;
    /* Bright Cyan/Mint */

    --futuristic-secondary: #9b5de5;
    /* Vibrant Purple */

    --futuristic-border: rgba(0, 245, 212, 0.2);

    --futuristic-text: #e0e0e0;

    --futuristic-text-muted: #8c8ca2;

}

body.futuristic-body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--futuristic-bg);
    color: var(--futuristic-text);
}

/* ===== Navigation ===== */
.futuristic-nav {
    background: rgba(10, 10, 26, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--futuristic-border);
}

.futuristic-brand {
    font-weight: 700;
    color: var(--futuristic-primary) !important;
    text-shadow: 0 0 5px var(--futuristic-primary);
}

.nav-link {
    color: var(--futuristic-text-muted) !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--futuristic-primary) !important;
    text-shadow: 0 0 3px var(--futuristic-primary);
}

/* ===== Buttons ===== */
.btn-primary-futuristic {
    background-color: var(--futuristic-primary);
    color: var(--futuristic-bg);
    font-weight: 700;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary-futuristic:hover {
    background-color: var(--futuristic-primary);
    color: var(--futuristic-bg);
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--futuristic-primary);
}

.btn-primary-futuristic-glow {
    background-color: var(--futuristic-primary);
    color: var(--futuristic-bg);
    font-weight: 700;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 15px var(--futuristic-primary);
    animation: pulse 2s infinite;
}

.btn-primary-futuristic-glow:hover {
    animation-play-state: paused;
    transform: scale(1.05);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px var(--futuristic-primary);
    }

    50% {
        box-shadow: 0 0 25px var(--futuristic-primary);
    }

    100% {
        box-shadow: 0 0 10px var(--futuristic-primary);
    }
}

/* ===== Hero & Titles ===== */
.futuristic-title {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.futuristic-accent-text {
    color: var(--futuristic-primary);
    text-shadow: 0 0 5px var(--futuristic-primary);
}

.futuristic-graphic-placeholder {
    height: 300px;
    background: linear-gradient(45deg, var(--futuristic-surface), var(--futuristic-bg));
    border: 1px solid var(--futuristic-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--futuristic-text-muted);
    /* Add a pseudo-element for more flair */
}

/* ===== Cards ===== */
.futuristic-card {
    background-color: var(--futuristic-surface);
    border: 1px solid var(--futuristic-border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.futuristic-card:hover {
    transform: translateY(-5px);
    border-color: var(--futuristic-primary);
    box-shadow: 0 5px 20px rgba(0, 245, 212, 0.1);
}

.futuristic-card-title {
    color: var(--futuristic-primary);
    font-weight: 600;
}

/* ===== Footer ===== */
.futuristic-footer {
    border-top: 1px solid var(--futuristic-border);
    background-color: rgba(10, 10, 26, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 2px 2px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

@media screen and (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}