: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); }
/* Enhanced Dropdown Menu */
.dropdown-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px); min-width: 260px; background: #0d0d12 !important; backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(0, 191, 255, 0.2) !important; border-radius: 16px; padding: 12px; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); list-style: none; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 191, 255, 0.1); z-index: 1000; }
.dropdown-menu::before { content: ''; position: absolute; top: -8px; left: 50%; width: 16px; height: 16px; background: #0d0d12; border-left: 1px solid rgba(0, 191, 255, 0.2); border-top: 1px solid rgba(0, 191, 255, 0.2); transform: translateX(-50%) rotate(45deg); z-index: -1; }
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu li { margin: 2px 0; background: transparent !important; }
.dropdown-menu li a { display: flex; align-items: center; gap: 12px; padding: 12px 16px; color: rgba(255, 255, 255, 0.75) !important; font-size: 0.9rem; font-weight: 500; border-radius: 10px; transition: all 0.25s ease; white-space: nowrap; background: transparent !important; }
.dropdown-menu li a:hover { background: rgba(0, 191, 255, 0.12) !important; color: #00BFFF !important; transform: translateX(4px); }
.dropdown-menu li.dropdown-divider { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.dropdown-menu li a svg.menu-icon { width: 18px !important; height: 18px !important; min-width: 18px; max-width: 18px; min-height: 18px; max-height: 18px; stroke: currentColor; opacity: 0.6; flex-shrink: 0; transition: all 0.25s ease; display: inline-block; }
.dropdown-menu li a:hover svg.menu-icon { opacity: 1; stroke: #00BFFF; }
.dropdown-arrow { transition: transform 0.3s ease; margin-left: 2px; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.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 */
/* iOS 26 Liquid Glass Footer */
.footer { position: relative; padding: 100px 60px 50px; background: linear-gradient(180deg, transparent 0%, rgba(0, 10, 20, 0.95) 100%); border-top: 1px solid rgba(0, 191, 255, 0.15); overflow: hidden; }
.footer::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.4), transparent); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 50px; max-width: 1300px; margin: 0 auto 70px; }
.footer-logo img { max-width: 140px; margin-bottom: 20px; filter: drop-shadow(0 0 25px rgba(0, 191, 255, 0.4)); }
.footer-brand > p { color: rgba(255, 255, 255, 0.5); line-height: 1.8; margin-bottom: 28px; font-size: 0.95rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 44px; height: 44px; border-radius: 14px; background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.08); display: flex; align-items: center; justify-content: center; color: #00BFFF; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a:hover { background: linear-gradient(135deg, #00BFFF, #00E5FF); color: #000; border-color: transparent; box-shadow: 0 10px 30px rgba(0, 191, 255, 0.35); transform: translateY(-4px); }
.footer-column h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 28px; color: #fff; position: relative; padding-bottom: 12px; }
.footer-column h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: linear-gradient(90deg, #00BFFF, transparent); border-radius: 2px; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 14px; }
.footer-column ul a { color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 8px; }
.footer-column ul a::before { content: ''; width: 0; height: 1px; background: #00BFFF; transition: width 0.25s ease; }
.footer-column ul a:hover { color: #00BFFF; }
.footer-column ul a:hover::before { width: 12px; }
.contact-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; }
.contact-list li svg { fill: #00BFFF; flex-shrink: 0; margin-top: 3px; opacity: 0.8; }
.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.06); text-align: center; position: relative; }
.footer-bottom::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 200px; height: 1px; background: linear-gradient(90deg, transparent, rgba(0, 191, 255, 0.3), transparent); }
.footer-bottom p { color: rgba(255, 255, 255, 0.35); font-size: 0.85rem; letter-spacing: 0.5px; }

/* 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: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px); background: rgba(12, 12, 18, 0.98); backdrop-filter: blur(25px); -webkit-backdrop-filter: blur(25px); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 16px; padding: 12px; min-width: 260px; opacity: 0; visibility: hidden; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); z-index: 1000; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05) inset; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown .dropdown-menu a { display: flex; align-items: center; gap: 14px; padding: 14px 18px; color: rgba(255, 255, 255, 0.8); text-decoration: none; font-weight: 500; border-radius: 10px; transition: all 0.25s ease; }
.nav-dropdown .dropdown-menu a:hover { background: linear-gradient(135deg, rgba(0, 191, 255, 0.15), rgba(0, 191, 255, 0.08)); color: #00BFFF; transform: translateX(4px); }

/* 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; }
    .footer-column h4::after { left: 50%; transform: translateX(-50%); }
    .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; left: 0; }
    .nav-dropdown .dropdown-menu a { padding: 12px 16px; }
    .dropdown-menu { position: static !important; opacity: 1 !important; visibility: visible !important; transform: none !important; left: 0 !important; background: rgba(0, 0, 0, 0.3) !important; border: none !important; margin: 10px 0 !important; box-shadow: none !important; }
    .dropdown-menu::before { display: none; }
    .dropdown-menu li a { padding: 12px 16px; }
    .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: 70px 20px 40px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .footer-social, .contact-list li { justify-content: center; }
    .footer-column h4::after { left: 50%; transform: translateX(-50%); }
    .footer-column ul a::before { display: none; }
    .contact-list li { justify-content: center; text-align: left; }
    .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; }
}

/* =============================================
   LANGUAGE SELECTOR - Liquid Glass Style
   ============================================= */
.language-selector {
    position: relative;
    margin-right: 15px;
    z-index: 1001;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(0, 191, 255, 0.3);
}

.current-flag {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.lang-arrow {
    transition: transform 0.3s ease;
    stroke: rgba(255, 255, 255, 0.7);
    width: 10px;
    height: 10px;
}

.language-selector:has(.lang-dropdown.active) .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 150px;
    background: linear-gradient(135deg, rgba(15, 15, 25, 0.98) 0%, rgba(8, 8, 16, 0.99) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 191, 255, 0.05);
}

.lang-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.lang-option:hover {
    background: rgba(0, 191, 255, 0.1);
    color: #fff;
}

.lang-option.active {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.15) 0%, rgba(0, 191, 255, 0.05) 100%);
    color: #00BFFF;
}

.lang-option img {
    width: 22px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

/* =============================================
   RTL (Right-to-Left) Support for Arabic
   ============================================= */
html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .navbar {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

html[dir="rtl"] .language-selector {
    margin-right: 0;
    margin-left: 15px;
}

html[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

html[dir="rtl"] .dropdown-menu {
    left: auto;
    right: 0;
}

html[dir="rtl"] .dropdown-arrow {
    margin-left: 0;
    margin-right: 5px;
}

html[dir="rtl"] .footer-grid {
    direction: rtl;
}

html[dir="rtl"] .footer-social {
    justify-content: flex-start;
}

html[dir="rtl"] .contact-list li {
    flex-direction: row-reverse;
    text-align: right;
}

html[dir="rtl"] .contact-list svg {
    margin-right: 0;
    margin-left: 10px;
}

html[dir="rtl"] .hero,
html[dir="rtl"] .section-header,
html[dir="rtl"] .page-header {
    text-align: center;
}

html[dir="rtl"] .btn svg {
    margin-right: 0;
    margin-left: 8px;
}

html[dir="rtl"] .mobile-menu {
    left: auto;
    right: -100%;
}

html[dir="rtl"] .mobile-menu.active {
    right: 0;
}

/* Mobile Language Selector in Navbar */
@media (max-width: 992px) {
    .navbar .language-selector {
        display: none;
    }

    html[dir="rtl"] .language-selector {
        right: auto;
        left: 20px;
    }
}

/* Mobile Menu Language Selector */
.mobile-lang-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-lang-btn img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
}

.mobile-lang-btn:hover {
    background: rgba(0, 191, 255, 0.1);
    border-color: rgba(0, 191, 255, 0.3);
}

.mobile-lang-btn.active {
    background: rgba(0, 191, 255, 0.15);
    border-color: #00BFFF;
}
