/* style.css - Shared Styles */
:root {
    --primary-purple: #8a2be2;
    --dark-purple: #6a0dad;
    --light-purple: #b19cd9;
    --neon-purple: #9d4edd;
    --cyber-purple: #c77dff;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gradient-bg: linear-gradient(135deg, var(--dark-purple) 0%, var(--black) 100%);
    --gradient-card: linear-gradient(145deg, var(--medium-gray) 0%, var(--black) 100%);
    --gradient-neon: linear-gradient(90deg, var(--neon-purple) 0%, var(--cyber-purple) 100%);
    --card-bg: rgba(26, 26, 26, 0.9);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-hover: 0 15px 40px rgba(142, 68, 173, 0.3);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
    --glow: 0 0 15px rgba(157, 78, 221, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header & Navigation */
header {
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(142, 68, 173, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    background: var(--gradient-neon);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: var(--glow);
    animation: logoGlow 3s infinite alternate;
}

@keyframes logoGlow {
    0% { box-shadow: 0 0 10px rgba(157, 78, 221, 0.5); }
    100% { box-shadow: 0 0 20px rgba(157, 78, 221, 0.8); }
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--light-purple);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--off-white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: var(--neon-purple);
}

.nav-links a.active {
    color: var(--neon-purple);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-neon);
    border-radius: 2px;
    animation: linkGlow 2s infinite alternate;
}

@keyframes linkGlow {
    0% { box-shadow: 0 0 5px var(--neon-purple); }
    100% { box-shadow: 0 0 10px var(--neon-purple); }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 2px solid var(--neon-purple);
    color: var(--neon-purple);
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(157, 78, 221, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    background: var(--gradient-neon);
    color: var(--white);
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(142, 68, 173, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-neon);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-business {
    background: linear-gradient(90deg, #ff6b6b, #ee5a24);
    color: white;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-neon);
    border-radius: 3px;
}

.section-title p {
    color: var(--light-purple);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Cyber Line */
.cyber-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-purple), transparent);
    margin: 40px 0;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.95);
    color: var(--white);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(142, 68, 173, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Orbitron', sans-serif;
}

.footer-logo p {
    color: var(--light-purple);
    margin-bottom: 25px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-neon);
    border-radius: 3px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--light-purple);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--neon-purple);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--light-purple);
}

.footer-contact i {
    color: var(--neon-purple);
    width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-purple);
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: var(--transition);
    text-decoration: none;
    border: 2px solid white;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    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); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float-text {
    position: absolute;
    right: 75px;
    background: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.5px;
}

.whatsapp-float:hover .whatsapp-float-text {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        border-bottom: 1px solid rgba(142, 68, 173, 0.3);
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}