:root {
--neon-blue: #00BFFF;
--neon-blue-light: #38BDF8;
--dark-bg: #0a0a0a;
--dark-card: #111111;
--glass-bg: rgba(20, 20, 20, 0.8);
--text-white: #ffffff;
--text-gray: #aaaaaa;
--text-dark-gray: #666666;
--border-color: rgba(0, 191, 255, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background: var(--dark-bg); color: var(--text-white); overflow-x: hidden; line-height: 1.6; }
a { color: var(--neon-blue); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--neon-blue-light); }
img { max-width: 100%; height: auto; }

/* Background Animation */
.bg-animation { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1;
background: radial-gradient(ellipse at 20% 80%, rgba(0, 191, 255, 0.08) 0%, transparent 50%),
radial-gradient(ellipse at 80% 20%, rgba(0, 191, 255, 0.06) 0%, transparent 50%),
radial-gradient(ellipse at 50% 50%, rgba(0, 191, 255, 0.03) 0%, transparent 70%); }
.floating-orb { position: absolute; border-radius: 50%; background: radial-gradient(circle, rgba(0, 191, 255, 0.25) 0%, transparent 70%); animation: float 8s ease-in-out infinite; pointer-events: none; }
.orb-1 { width: 500px; height: 500px; top: -10%; left: -10%; }
.orb-2 { width: 400px; height: 400px; bottom: -10%; right: -10%; animation-delay: -3s; }
.orb-3 { width: 250px; height: 250px; top: 50%; right: 20%; animation-delay: -5s; }
@keyframes float { 0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; } 50% { transform: translateY(-30px) scale(1.1); opacity: 0.7; } }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; right: 0; padding: 15px 60px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); }
.navbar .logo img { height: 45px; width: auto; filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.3)); transition: all 0.3s ease; }
.navbar .logo:hover img { filter: drop-shadow(0 0 30px rgba(0, 191, 255, 0.5)); }
.nav-links { display: flex; gap: 35px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links > li > a { color: var(--text-gray); font-weight: 500; font-size: 0.95rem; display: flex; align-items: center; gap: 5px; padding: 10px 0; }
.nav-links > li > a:hover { color: var(--neon-blue); text-shadow: 0 0 20px rgba(0, 191, 255, 0.5); }
.dropdown-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--glass-bg); backdrop-filter: blur(20px); border: 1px solid var(--border-color); border-radius: 12px; padding: 10px 0; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; list-style: none; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a { display: block; padding: 12px 20px; color: var(--text-gray); font-size: 0.9rem; }
.dropdown-menu li a:hover { background: rgba(0, 191, 255, 0.1); color: var(--neon-blue); padding-left: 25px; }
.nav-cta { padding: 12px 28px; background: linear-gradient(135deg, var(--neon-blue), var(--neon-blue-light)); color: #000 !important; border-radius: 50px; font-weight: 600; font-size: 0.9rem; box-shadow: 0 0 25px rgba(0, 191, 255, 0.3); }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 0 40px rgba(0, 191, 255, 0.5); }
.mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.mobile-menu-toggle span { width: 25px; height: 3px; background: var(--neon-blue); border-radius: 3px; }
.mobile-menu { display: none; position: fixed; top: 75px; left: 0; right: 0; background: var(--glass-bg); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); padding: 20px; z-index: 999; }
.mobile-menu.active { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li a { display: block; padding: 15px 0; color: var(--text-gray); border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-cta { display: inline-block; margin-top: 15px; padding: 12px 30px; background: linear-gradient(135deg, var(--neon-blue), var(--neon-blue-light)); color: #000 !important; border-radius: 50px; font-weight: 600; }

/* Sections */
section { padding: 100px 60px; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 15px; }
.section-header h2 span { color: var(--neon-blue); text-shadow: 0 0 30px rgba(0, 191, 255, 0.5); }
.section-header p { color: var(--text-gray); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Hero */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 80px; }
.hero-content { max-width: 900px; }
.hero-badge { display: inline-block; padding: 10px 25px; background: rgba(0, 191, 255, 0.1); border: 1px solid rgba(0, 191, 255, 0.3); border-radius: 50px; font-size: 0.85rem; color: var(--neon-blue); margin-bottom: 25px; letter-spacing: 2px; text-transform: uppercase; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(0, 191, 255, 0.4); } 50% { box-shadow: 0 0 0 15px rgba(0, 191, 255, 0); } }
.hero h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 25px; }
.hero h1 span { background: linear-gradient(135deg, var(--neon-blue), var(--neon-blue-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.2rem; color: var(--text-gray); margin-bottom: 40px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn { display: inline-block; padding: 16px 40px; font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; border-radius: 50px; cursor: pointer; transition: all 0.4s ease; border: none; font-family: inherit; }
.btn-primary { background: linear-gradient(135deg, var(--neon-blue), var(--neon-blue-light)); color: #000; box-shadow: 0 0 30px rgba(0, 191, 255, 0.4); position: relative; overflow: hidden; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(0, 191, 255, 0.6); }
.btn-secondary { background: transparent; color: var(--neon-blue); border: 2px solid var(--neon-blue); }
.btn-secondary:hover { background: rgba(0, 191, 255, 0.1); }

/* Glass Cards */
.glass-card { background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.8)); backdrop-filter: blur(20px); border-radius: 24px; border: 1px solid var(--border-color); padding: 35px; position: relative; overflow: hidden; transition: all 0.4s ease; }
.glass-card:hover { transform: translateY(-10px); border-color: rgba(0, 191, 255, 0.4); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); }

/* Products Grid */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 30px; max-width: 1400px; margin: 0 auto; }
.product-card { background: linear-gradient(135deg, rgba(30, 30, 30, 0.9), rgba(20, 20, 20, 0.8)); border-radius: 24px; border: 1px solid var(--border-color); overflow: hidden; transition: all 0.4s ease; }
.product-card:hover { transform: translateY(-10px); border-color: rgba(0, 191, 255, 0.4); box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); }
.product-image { height: 220px; background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(0, 191, 255, 0.02)); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-image img { max-height: 180px; max-width: 90%; object-fit: contain; transition: transform 0.4s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-tag { position: absolute; top: 15px; left: 15px; padding: 6px 15px; background: rgba(0, 191, 255, 0.2); border: 1px solid rgba(0, 191, 255, 0.4); border-radius: 20px; font-size: 0.75rem; color: var(--neon-blue); z-index: 1; }
.product-content { padding: 25px; }
.product-category { font-size: 0.8rem; color: var(--neon-blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.product-content h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--text-white); }
.product-content p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.6; }
.product-specs { display: flex; gap: 20px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.product-spec { text-align: center; }
.product-spec-value { font-size: 1.2rem; font-weight: 700; color: var(--neon-blue); }
.product-spec-label { font-size: 0.7rem; color: var(--text-dark-gray); text-transform: uppercase; }
.product-link { display: block; text-align: center; padding: 15px; background: rgba(0, 191, 255, 0.1); color: var(--neon-blue); font-weight: 600; font-size: 0.9rem; transition: all 0.3s ease; }
.product-link:hover { background: var(--neon-blue); color: #000; }

/* Stats */
.stats { padding: 80px 60px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; max-width: 1200px; margin: 0 auto; text-align: center; }
.stat-item { padding: 30px; }
.stat-number { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; background: linear-gradient(135deg, var(--neon-blue), var(--neon-blue-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1; margin-bottom: 10px; }
.stat-label { color: var(--text-gray); font-size: 1rem; text-transform: uppercase; letter-spacing: 2px; }

/* CTA */
.cta { padding: 100px 60px; text-align: center; }
.cta-box { max-width: 800px; margin: 0 auto; padding: 80px 60px; background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(20, 20, 20, 0.9)); border-radius: 30px; border: 1px solid rgba(0, 191, 255, 0.3); box-shadow: 0 0 80px rgba(0, 191, 255, 0.1); }
.cta-box h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; }
.cta-box p { color: var(--text-gray); font-size: 1.1rem; margin-bottom: 35px; }

/* Footer */
.footer { padding: 80px 60px 40px; border-top: 1px solid var(--border-color); background: rgba(5, 5, 5, 0.9); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 60px; max-width: 1400px; margin: 0 auto 60px; }
.footer-logo img { max-width: 150px; margin-bottom: 20px; filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.3)); }
.footer-brand > p { color: var(--text-gray); line-height: 1.8; margin-bottom: 25px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(0, 191, 255, 0.1); display: flex; align-items: center; justify-content: center; color: var(--neon-blue); transition: all 0.3s ease; }
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a:hover { background: var(--neon-blue); color: #000; box-shadow: 0 0 25px rgba(0, 191, 255, 0.4); transform: translateY(-3px); }
.footer-column h4 { font-size: 1.1rem; margin-bottom: 25px; color: var(--text-white); }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 12px; }
.footer-column ul a { color: var(--text-gray); font-size: 0.95rem; }
.footer-column ul a:hover { color: var(--neon-blue); padding-left: 5px; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-gray); font-size: 0.9rem; margin-bottom: 12px; }
.contact-list li svg { flex-shrink: 0; margin-top: 3px; fill: var(--neon-blue); }
.footer-bottom { padding-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); text-align: center; }
.footer-bottom p { color: var(--text-dark-gray); font-size: 0.9rem; }

/* Forms */
.form-group { margin-bottom: 25px; }
.form-group label { display: block; margin-bottom: 10px; font-weight: 500; color: var(--text-gray); }
.form-control { width: 100%; padding: 16px 20px; background: rgba(10, 10, 10, 0.8); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; color: var(--text-white); font-family: inherit; font-size: 1rem; transition: all 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--neon-blue); box-shadow: 0 0 20px rgba(0, 191, 255, 0.2); }
.form-control::placeholder { color: rgba(255, 255, 255, 0.3); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Page Header */
.page-header { padding: 150px 60px 80px; text-align: center; }
.page-header h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; margin-bottom: 15px; }
.page-header h1 span { color: var(--neon-blue); }
.breadcrumb { display: flex; justify-content: center; gap: 10px; color: var(--text-gray); font-size: 0.95rem; }
.breadcrumb a { color: var(--text-gray); }
.breadcrumb a:hover { color: var(--neon-blue); }

/* Alerts */
.alert { padding: 15px 25px; border-radius: 12px; margin-bottom: 25px; }
.alert-success { background: rgba(40, 167, 69, 0.2); border: 1px solid rgba(40, 167, 69, 0.4); color: #5dd879; }
.alert-error { background: rgba(220, 53, 69, 0.2); border: 1px solid rgba(220, 53, 69, 0.4); color: #ff6b7a; }

/* Dynamic Menu Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 5px; }
.nav-dropdown .dropdown-menu { position: absolute; top: 100%; left: 0; background: rgba(10, 10, 15, 0.98); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 15px; padding: 10px 0; min-width: 200px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; z-index: 1000; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5); }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown .dropdown-menu a { display: block; padding: 12px 20px; color: var(--text-gray); text-decoration: none; transition: all 0.3s ease; }
.nav-dropdown .dropdown-menu a:hover { background: rgba(0, 191, 255, 0.1); color: var(--neon-blue); padding-left: 25px; }

/* Site Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; padding: 15px 60px; display: flex; justify-content: space-between; align-items: center; z-index: 1000; background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); }
.header-container { display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1400px; margin: 0 auto; }
.site-header .logo { font-size: 1.8rem; font-weight: 800; color: var(--text-white); }
.site-header .logo span { color: var(--neon-blue); }
.site-header .logo img { height: 45px; width: auto; filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.3)); }
.main-nav { display: flex; gap: 35px; align-items: center; }
.main-nav > a { color: var(--text-gray); font-weight: 500; font-size: 0.95rem; padding: 10px 0; transition: all 0.3s ease; }
.main-nav > a:hover { color: var(--neon-blue); text-shadow: 0 0 20px rgba(0, 191, 255, 0.5); }
.header-actions { display: flex; align-items: center; gap: 20px; }
.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; }
.mobile-menu-btn span { width: 25px; height: 3px; background: var(--neon-blue); border-radius: 3px; transition: all 0.3s ease; }

/* Google Maps */
.map-section { padding: 0; margin-top: 60px; }
.map-container { width: 100%; height: 450px; border-radius: 20px; overflow: hidden; border: 1px solid var(--border-color); }
.map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(100%) invert(92%) contrast(83%); }
.map-container:hover iframe { filter: grayscale(50%) invert(92%) contrast(83%); }

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 992px) {
    section { padding: 80px 30px; }
    .navbar { padding: 15px 30px; }
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-toggle { display: flex; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .site-header { padding: 15px 30px; }
    .main-nav { display: none; position: fixed; top: 75px; left: 0; right: 0; background: var(--glass-bg); backdrop-filter: blur(20px); flex-direction: column; padding: 20px; gap: 0; border-bottom: 1px solid var(--border-color); }
    .main-nav.active { display: flex; }
    .main-nav > a, .nav-dropdown > a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.05); width: 100%; }
    .nav-dropdown .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; background: rgba(0, 0, 0, 0.3); border: none; border-radius: 10px; margin: 10px 0; box-shadow: none; }
    .mobile-menu-btn { display: flex; }
    .header-actions .btn { display: none; }

    /* STATS MOBILE FIX */
    .stats { padding: 60px 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-item { padding: 20px 15px; }
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.8rem; letter-spacing: 1px; }
}

@media (max-width: 768px) {
    section { padding: 60px 20px; }
    .hero { padding: 100px 20px 60px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .products-grid { grid-template-columns: 1fr; }
    .cta-box { padding: 50px 30px; }
    .footer { padding: 60px 20px 30px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-social, .contact-list li { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .page-header { padding: 120px 20px 60px; }

    /* STATS MOBILE FIX */
    .stats { padding: 50px 15px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-item { padding: 15px 10px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.7rem; letter-spacing: 1px; }
}

@media (max-width: 480px) {
    .navbar .logo img { height: 35px; }
    .hero h1 { font-size: 2rem; }
    .btn { padding: 14px 30px; font-size: 0.85rem; }

    /* STATS MOBILE FIX */
    .stats { padding: 40px 10px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .stat-item { padding: 15px 8px; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.65rem; letter-spacing: 0.5px; }
}
