/* Base Styles & Variables */
:root {
    --neon-green: #39ff14;
    --neon-cyan: #00f7ff;
    --neon-pink: #ff00ff;
    --neon-purple: #bc13fe;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --text-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Neon Text Effects */
.neon-text {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan),
                 0 0 10px var(--neon-cyan),
                 0 0 20px var(--neon-cyan);
}

.neon-text-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink),
                 0 0 10px var(--neon-pink),
                 0 0 20px var(--neon-pink);
}

.neon-text-cyan {
    color: var(--neon-cyan);
    text-shadow: 0 0 5px var(--neon-cyan),
                 0 0 10px var(--neon-cyan);
}

.neon-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--neon-green),
                 0 0 20px var(--neon-green),
                 0 0 30px var(--neon-green);
    animation: flicker 1.5s infinite alternate;
}

/* Animations */
@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 0 0 10px var(--neon-green),
                     0 0 20px var(--neon-green),
                     0 0 30px var(--neon-green);
    }
    20%, 24%, 55% {        
        text-shadow: none;
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 5px var(--neon-cyan), 0 0 20px var(--neon-cyan); }
    50% { box-shadow: 0 0 10px var(--neon-cyan), 0 0 30px var(--neon-cyan); }
    100% { box-shadow: 0 0 5px var(--neon-cyan), 0 0 20px var(--neon-cyan); }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 247, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--neon-cyan);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--neon-cyan);
}

.nav-link:hover::after {
    width: 100%;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MDAiIGhlaWdodD0iNjAwIiB2aWV3Qm94PSIwIDAgNjAwIDYwMCI+PGNpcmNsZSBjeD0iMzAwIiBjeT0iMzAwIiByPSIxMDAiIGZpbGw9IiMwMGY3ZmYiIG9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==') center/cover no-repeat;
    z-index: -1;
    opacity: 0.3;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ccc;
    max-width: 80%;
}

.hero-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.hero-icons i {
    font-size: 2rem;
    color: var(--neon-cyan);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.hero-icons i:nth-child(2) {
    color: var(--neon-pink);
    animation-delay: 0.5s;
}

.hero-icons i:nth-child(3) {
    color: var(--neon-green);
    animation-delay: 1s;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    max-width: 500px;
    z-index: 0;
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 247, 255, 0.5));
}

/* Buttons */
.btn-neon {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-shadow: 0 0 5px var(--neon-cyan), 0 0 10px var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.3), 0 0 20px rgba(0, 247, 255, 0.2);
}

.btn-neon:hover {
    background: var(--neon-cyan);
    color: #0a0a1a;
    text-shadow: none;
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan), 0 0 60px var(--neon-cyan);
    transform: translateY(-2px);
}

.btn-neon:active {
    transform: translateY(0);
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}
.btn-neon:hover::before {
    left: 100%;
}

/* Product Card Buttons */
.product-card .btn-neon {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 1.5rem auto 0;
    padding: 12px 25px;
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    text-shadow: 0 0 5px var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card .btn-neon:hover {
    background: var(--neon-cyan);
    color: #0a0a1a;
    text-shadow: none;
    box-shadow: 0 0 20px var(--neon-cyan), 
                0 0 40px var(--neon-cyan);
    transform: translateY(-2px);
}

.product-card .btn-neon:active {
    transform: translateY(0);
}

.product-card .btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 255, 0.4), transparent);
    transition: 0.5s;
    z-index: -1;
}

.product-card .btn-neon:hover::before {
    left: 100%;
}

.cta-button, .product-button {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--neon-cyan);
    padding: 0.8rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    z-index: 1;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.cta-button {
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-green));
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.cta-button:hover, .product-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan);
}

.cta-button:active, .product-button:active {
    transform: translateY(1px);
}

/* Sections */
section {
    padding: 6rem 2rem;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    border-radius: 3px;
}

/* Products Section */
.products {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 247, 255, 0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 247, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.2);
    border-color: var(--neon-cyan);
}

.product-card:hover::before {
    transform: translateX(100%);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-cyan);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.product-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.product-card p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.product-button {
    background: transparent;
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

/* Benefits Section */
.benefits {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MDAiIGhlaWdodD0iNjAwIiB2aWV3Qm94PSIwIDAgNjAwIDYwMCI+PGNpcmNsZSBjeD0iMzAwIiBjeT0iMzAwIiByPSIxMDAiIGZpbGw9IiNmZjAwZmYiIG9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==') center/cover no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 247, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
    border-color: var(--neon-pink);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 247, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--neon-cyan);
    transition: var(--transition);
}

.benefit-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
}

.benefit-item:hover .benefit-icon {
    background: var(--neon-pink);
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 0 20px var(--neon-pink);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.benefit-item p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MDAiIGhlaWdodD0iNjAwIiB2aWV3Qm94PSIwIDAgNjAwIDYwMCI+PGNpcmNsZSBjeD0iMzAwIiBjeT0iMzAwIiByPSIxMDAiIGZpbGw9IiNiYzEzZmUiIG9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==') center/cover no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.testimonials-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll 40s linear infinite;
    padding: 1rem 0;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(188, 19, 254, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-width: 300px;
    flex-shrink: 0;
    backdrop-filter: blur(5px);
}

.testimonial-card::before {
    content: '"\201D';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 6rem;
    color: rgba(188, 19, 254, 0.1);
    font-family: serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
    border-color: var(--neon-purple);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: rgba(188, 19, 254, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--neon-purple);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-avatar {
    background: var(--neon-purple);
    color: white;
    transform: rotateY(180deg);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: #ddd;
    min-height: 80px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--neon-purple);
    margin: 0;
}

.rating {
    color: var(--neon-purple);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-300px * 3 - 2rem * 2)); /* Width of 3 cards + gap */
    }
}

/* Pause animation on hover */
.testimonials-container:hover .testimonials-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonials-track {
        animation-duration: 30s; /* Faster on mobile */
    }
    
    .testimonial-card {
        min-width: 280px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 3 - 2rem * 2));
        }
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 247, 255, 0.1), rgba(188, 19, 254, 0.1));
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 247, 255, 0.1);
    border-bottom: 1px solid rgba(188, 19, 254, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MDAiIGhlaWdodD0iNjAwIiB2aWV3Qm94PSIwIDAgNjAwIDYwMCI+PGNpcmNsZSBjeD0iMzAwIiBjeT0iMzAwIiByPSIxMDAiIGZpbGw9IiMzOWZmMTQiIG9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==') center/cover no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 10px var(--neon-green);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-button {
    position: relative;
    z-index: 1;
    background: linear-gradient(45deg, var(--neon-pink), var(--neon-purple));
    border: none;
    box-shadow: 0 0 15px var(--neon-pink), 0 0 30px var(--neon-purple);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px var(--neon-pink), 0 0 45px var(--neon-purple);
}

/* Comment Form Submit Button */
.comment-form .btn-neon {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    padding: 15px 40px;
    font-size: 1.1rem;
    letter-spacing: 3px;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 255, 0.3), 
                0 0 20px rgba(255, 0, 255, 0.2),
                inset 0 0 10px rgba(255, 0, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.comment-form .btn-neon:hover {
    background: var(--neon-pink);
    color: #0a0a1a;
    text-shadow: none;
    box-shadow: 0 0 20px var(--neon-pink), 
                0 0 40px var(--neon-pink), 
                0 0 60px var(--neon-pink),
                inset 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.02);
}

.comment-form .btn-neon:active {
    transform: translateY(1px) scale(0.98);
}

.comment-form .btn-neon::before,
.comment-form .btn-neon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border: 2px solid var(--neon-pink);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.comment-form .btn-neon::before {
    top: -5px;
    left: -5px;
    border-top-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg);
}

.comment-form .btn-neon::after {
    bottom: -5px;
    right: -5px;
    border-bottom-color: transparent;
    border-right-color: transparent;
    transform: rotate(45deg);
}

.comment-form .btn-neon:hover::before,
.comment-form .btn-neon:hover::after {
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    border-radius: 5px;
    opacity: 1;
}

.comment-form .btn-neon:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 0, 255, 0.5);
}

/* Comment Section */
.comment-section {
    background-color: var(--darker-bg);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.comment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: neonGlow 1.5s linear infinite;
}

.comment-section .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.comment-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(10, 10, 26, 0.7);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 247, 255, 0.1);
    border: 1px solid rgba(0, 247, 255, 0.2);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 247, 255, 0.3);
    border-radius: 8px;
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.form-input.textarea {
    min-height: 150px;
    resize: vertical;
}

.form-label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--dark-bg);
    padding: 0 0.5rem;
    transform: translateY(-1.5rem);
    font-size: 0.9rem;
    opacity: 0;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    opacity: 1;
    transform: translateY(-2.2rem);
}

.rating-input {
    margin-bottom: 2rem;
    text-align: center;
}

.rating-input p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.stars {
    direction: rtl;
    display: inline-block;
}

.stars input[type="radio"] {
    display: none;
}

.stars label {
    color: #444;
    font-size: 2rem;
    padding: 0 5px;
    cursor: pointer;
    transition: color 0.2s;
}

.stars label:hover,
.stars label:hover ~ label,
.stars input[type="radio"]:checked ~ label {
    color: #ffc107;
    text-shadow: 0 0 10px #ffc107;
}

.thank-you-message {
    text-align: center;
    padding: 2rem;
    display: none;
}

.thank-you-message i {
    font-size: 4rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-green);
}

.thank-you-message h3 {
    margin-bottom: 1rem;
    color: var(--neon-cyan);
}

.thank-you-message p {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 247, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MDAiIGhlaWdodD0iNjAwIiB2aWV3Qm94PSIwIDAgNjAwIDYwMCI+PGNpcmNsZSBjeD0iMzAwIiBjeT0iMzAwIiByPSIxMDAiIGZpbGw9IiMwMGY3ZmYiIG9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==') center/cover no-repeat;
    z-index: 0;
    opacity: 0.1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: #aaa;
    margin-bottom: 1.5rem;
}

.footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50%;
    height: 2px;
    background: var(--neon-cyan);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--neon-cyan);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--neon-cyan);
    padding-left: 5px;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: var(--neon-cyan);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 247, 255, 0.08);
    color: var(--neon-cyan);
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 247, 255, 0.2);
    text-decoration: none;
}

/* Font Awesome icon adjustments */
.social-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
    transition: all 0.3s ease;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--neon-cyan), var(--neon-pink));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    color: white;
    box-shadow: 0 5px 20px rgba(0, 247, 255, 0.3);
    background: transparent;
    border-color: transparent;
}

.social-icon:hover::before {
    opacity: 1;
}

/* Individual icon colors and effects */
.social-icon.facebook:hover {
    color: #1877f2;
    text-shadow: 0 0 15px #1877f2;
    transform: translateY(-5px) scale(1.15);
}

.social-icon.twitter:hover {
    color: #1da1f2;
    text-shadow: 0 0 15px #1da1f2;
    transform: translateY(-5px) scale(1.15);
}

.social-icon.instagram:hover {
    color: #e4405f;
    text-shadow: 0 0 15px #e4405f;
    transform: translateY(-5px) scale(1.15);
}

.social-icon.discord:hover {
    color: #5865f2;
    text-shadow: 0 0 15px #5865f2;
    transform: translateY(-5px) scale(1.15);
}

.social-icon.whatsapp:hover {
    color: #25d366;
    text-shadow: 0 0 15px #25d366;
    transform: translateY(-5px) scale(1.15);
}

/* Add pulse animation on hover */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 247, 255, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0, 247, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 247, 255, 0); }
}

.social-icon:hover {
    animation: pulse 1.5s infinite;
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 247, 255, 0.1);
    color: #666;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Neon Overlay */
.neon-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 247, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 255, 0.1) 0%, transparent 25%),
        radial-gradient(circle at 50% 10%, rgba(188, 19, 254, 0.1) 0%, transparent 30%);
    opacity: 0.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 10rem;
    }

    .hero-content {
        margin-bottom: 3rem;
        max-width: 100%;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 80%;
        margin: 0 auto;
    }

    .hero-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--darker-bg);
        width: 100%;
        text-align: center;
        padding: 2rem 0;
        transition: 0.3s;
        border-bottom: 1px solid var(--neon-cyan);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-link {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .section-title {
        font-size: 2rem;
    }

    .neon-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .neon-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-subtitle {
        font-size: 1rem;
    }
}
