/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Glassmorphism Effect */
.glassmorph {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Neon Text */
.neon-text {
    color: #00ffff;
    text-shadow: 
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 40px #00ffff;
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    from {
        text-shadow: 
            0 0 5px #00ffff,
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 40px #00ffff;
    }
    to {
        text-shadow: 
            0 0 10px #00ffff,
            0 0 20px #00ffff,
            0 0 30px #00ffff,
            0 0 50px #00ffff;
    }
}

/* Navbar */
.navbar {
    padding: 20px 0;
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Hero Slider */
.hero-slider {
    margin: 40px 0;
}

.swiper {
    width: 100%;
    height: 500px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-content {
    width: 90%;
    height: 90%;
    position: relative;
    overflow: hidden;
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.slide-text h2 {
    color: #00ffff;
    margin-bottom: 10px;
    font-size: 1.8rem;
}

/* About Section */
.about-section {
    margin: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.neon-line {
    width: 100px;
    height: 3px;
    background: #00ffff;
    margin: 0 auto;
    box-shadow: 0 0 10px #00ffff;
}

.about-content {
    padding: 40px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Products */
.special-products,
.all-products {
    margin: 60px 0;
}

.productsSwiper,
.contactsSwiper {
    padding: 20px 0;
}

.product-card {
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.special-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #00ffff;
}

.product-rating {
    margin-bottom: 10px;
}

.product-rating i {
    color: #666;
    margin-right: 2px;
}

.product-rating .star-filled {
    color: #ffd700;
    text-shadow: 0 0 5px #ffd700;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00ff00;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #00ff00;
}

/* Neon Button */
.neon-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border: none;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.neon-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Contacts */
.contacts-section {
    margin: 60px 0;
}

.contact-card {
    padding: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 3rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00ffff;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #00ffff;
}

.contact-card p {
    margin-bottom: 20px;
    color: #ccc;
}

.contact-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
}

.contact-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.5);
}

/* Footer */
.footer {
    margin-top: 60px;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
}

.footer-links h3,
.footer-social h3 {
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00ffff;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #00ffff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #00ffff;
    color: #0f0c29;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2rem;
    }
    
    .swiper {
        height: 300px;
    }
    
    .about-content {
        padding: 20px;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }
    
    .swiper {
        height: 250px;
    }
    
    .slide-text h2 {
        font-size: 1.4rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .neon-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Swiper Navigation Customization */
.swiper-button-next,
.swiper-button-prev {
    color: #00ffff !important;
    text-shadow: 0 0 10px #00ffff;
}

.swiper-pagination-bullet {
    background: #00ffff !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    box-shadow: 0 0 10px #00ffff;
}