:root {
    --neon-green: #39FF14;
    --dark-bg: #050505;
    --card-bg: #111111;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    --shadow-neon: 0 0 10px rgba(57, 255, 20, 0.4), 0 0 20px rgba(57, 255, 20, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(57, 255, 20, 0.1);
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--neon-green);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: url('celutess_hero_repair_1778521457935.png') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(5, 5, 5, 0.9) 30%, rgba(5, 5, 5, 0.2));
}

.hero-content {
    position: relative;
    max-width: 700px;
    z-index: 10;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: var(--neon-green);
    color: #000;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-neon);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px var(--neon-green);
}

/* Services */
.services {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.card-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--neon-green);
}

.card-content p {
    color: var(--text-gray);
}

/* Store Catalog */
.store-catalog {
    padding: 100px 0;
    background: #000;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(57, 255, 20, 0.3);
    color: var(--text-white);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--neon-green);
    color: #000;
    border-color: var(--neon-green);
    box-shadow: var(--shadow-neon);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--neon-green);
    color: #000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 5;
}

.product-img-wrapper {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    color: var(--neon-green);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    text-transform: none;
}

.product-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.inquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #000;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}

.inquiry-btn:hover {
    background: var(--neon-green);
    color: #000;
}

/* Affiliate Offers Updates */
.affiliate {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 10px auto 0;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.offer-card {
    background: #000;
    border: 2px solid var(--neon-green);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    transition: var(--transition);
}

.offer-card:hover {
    box-shadow: 0 0 25px rgba(57, 255, 20, 0.3);
}

.offer-tag {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--neon-green);
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 5px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.offer-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    background: #fff;
    border-radius: 5px;
}

.offer-img img {
    max-height: 140px;
    object-fit: contain;
}

.flash-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--neon-green);
    font-size: 1.5rem;
    animation: pulse 1s infinite;
}

.offer-info h4 {
    margin-bottom: 10px;
}

.price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--neon-green);
    margin-bottom: 15px;
}

.old-price {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-decoration: line-through;
    margin-left: 10px;
}

.ml-button {
    display: block;
    text-align: center;
    background: #000;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 10px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition);
}

.ml-button:hover {
    background: var(--neon-green);
    color: #000;
}

/* Location */
.location {
    padding: 100px 0;
}

.location-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.location-text {
    flex: 1;
}

.location-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.hours {
    margin: 30px 0;
    background: var(--card-bg);
    padding: 25px;
    border-left: 4px solid var(--neon-green);
    border-radius: 0 10px 10px 0;
}

.hours h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--neon-green);
}

.hours ul {
    list-style: none;
}

.location-image {
    flex: 1;
}

.location-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-neon);
}

/* FAQ */
.faq {
    padding: 100px 0;
    background-color: var(--dark-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--neon-green);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--text-gray);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--neon-green);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background: #000;
    border-top: 1px solid rgba(57, 255, 20, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-links h4, .footer-social h4 {
    color: var(--neon-green);
    margin-bottom: 20px;
    font-size: 1rem;
}

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

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 10px;
}

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

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--text-white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--neon-green);
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-float span {
    font-size: 14px;
    font-weight: 700;
    margin-left: 0;
    max-width: 0;
    opacity: 0;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    width: 200px;
}

.whatsapp-float:hover span {
    margin-left: 10px;
    max-width: 150px;
    opacity: 1;
}

/* Testimonials */
.testimonials {
    padding: 80px 5%;
    background: #050505;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #111;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.testimonial-card .stars {
    color: #ffb400;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-card .user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--neon-green);
}

.testimonial-card .user h4 {
    font-size: 0.9rem;
}

/* Footer Map */
.footer-map {
    height: 300px;
    width: 100%;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(1) contrast(1.2);
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    .whatsapp-float:hover { width: 50px; }
    .whatsapp-float span { display: none; }
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .location-flex { flex-direction: column; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero h1 { font-size: 2.2rem; }
}

/* Repair Tracking & Quote Form */
.repair-tracking {
    padding: 100px 0;
    background: #050505;
}

.repair-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.quote-form-container, .tracking-container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(57, 255, 20, 0.1);
}

.client-form {
    margin-top: 25px;
}

.client-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.client-form input, .client-form textarea, .client-select {
    width: 100%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    outline: none;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.client-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2339FF14' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.client-form input:focus, .client-form textarea:focus, .client-select:focus {
    border-color: var(--neon-green);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.2);
}

.full-width {
    width: 100%;
    display: block;
    margin-top: 10px;
}

.btn-neon {
    background: var(--neon-green);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.btn-neon:hover {
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

.client-form textarea {
    height: 100px;
    margin-bottom: 15px;
    resize: none;
}

.search-box {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.search-box input {
    flex-grow: 1;
    background: #111;
    border: 1px solid rgba(57, 255, 20, 0.3);
    padding: 15px;
    border-radius: 8px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
}

#search-btn {
    background: var(--neon-green);
    border: none;
    padding: 0 25px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #000;
}

/* Footer Simple */
.footer-simple {
    padding: 30px 0;
    background: #000;
    border-top: 1px solid rgba(57, 255, 20, 0.1);
}

.footer-flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.footer-info {
    text-align: center;
}

.footer-info p {
    font-size: 0.85rem;
    color: #888;
    margin: 2px 0;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--neon-green);
    transform: translateY(-3px);
}

.footer-bottom-line {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 0.75rem;
    color: #666;
}

@media (max-width: 768px) {
    .footer-flex-row {
        flex-direction: column;
        text-align: center;
    }
}

.tracking-result {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    display: none;
    border: 1px solid rgba(57, 255, 20, 0.1);
    animation: fadeIn 0.3s ease-out;
}

.tracking-result h4 { color: var(--neon-green); margin-bottom: 10px; font-family: 'Orbitron', sans-serif; }
.tracking-result p { font-size: 0.9rem; color: #aaa; margin-bottom: 5px; }
.tracking-result .status-text { font-weight: 800; font-family: 'Orbitron', sans-serif; color: #fff; text-transform: uppercase; }

@media (max-width: 992px) {
    .repair-grid { grid-template-columns: 1fr; }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        z-index: 1001;
    }
    
    .mobile-menu-btn span {
        width: 30px;
        height: 3px;
        background: var(--neon-green);
        border-radius: 2px;
        transition: var(--transition);
    }

    .mobile-menu-btn.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(5,5,5,0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        backdrop-filter: blur(15px);
        border-left: 1px solid rgba(57, 255, 20, 0.2);
    }

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

    .nav-links a {
        margin: 20px 0;
        font-size: 1.5rem;
    }
}

/* Product Badges & Tags */
.product-card { position: relative; }
.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--neon-green);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    z-index: 10;
    box-shadow: 0 0 10px var(--neon-green);
}

.stock-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 800;
    z-index: 10;
}
.stock-badge.low { background: #ffae00; color: #000; }
.stock-badge.out { background: #ff4444; color: #fff; }

.inquiry-btn.disabled {
    background: #333 !important;
    color: #666 !important;
    pointer-events: none;
    box-shadow: none !important;
}

.mini-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(57, 255, 20, 0.1);
    color: var(--neon-green);
    font-size: 0.6rem;
    font-weight: 800;
    margin-left: 5px;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

