@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;800;900&family=JetBrains+Mono:wght@400;700&display=swap');

/* --- Modern Pro Variables --- */
:root {
    --black: #050505;
    --dark-gray: #121212;
    --border-dark: rgba(255,255,255,0.08);
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --border-light: #E2E8F0;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --accent: #2563EB; 
    --accent-hover: #1D4ED8;
    --accent-glow: rgba(37, 99, 235, 0.4);
    --whatsapp-green: #00E676;
    
    --font-main: 'Inter', sans-serif;
    --font-code: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); line-height: 1.6; overflow-x: hidden; background: var(--black); }

/* --- Dark Navigation --- */
.navbar { position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.2rem 5%; background: rgba(5,5,5,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border-dark); z-index: 1000; }
.logo h2 { font-weight: 900; font-size: 1.5rem; color: var(--white); letter-spacing: -1px; }
.logo h2::after { content: '.'; color: var(--accent); animation: blink 2s infinite; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link-text { text-decoration: none; color: #94A3B8; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-link-text:hover { color: var(--white); }
.nav-pill-btn { background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); color: var(--white); padding: 0.5rem 1.2rem; font-weight: 500; cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 6px; }
.nav-pill-btn:hover { background: var(--white); color: var(--black); box-shadow: 0 0 15px rgba(255,255,255,0.2); }

/* --- Hero Sections (Home & Leasing) --- */
.dark-section { background-color: var(--black); color: var(--white); position: relative; }
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 0 5%; overflow: hidden; position: relative; }
.leasing-hero { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 0 5%; position: relative; overflow: hidden; text-align: center; }

/* FIXED: Locked centering for centered-hero regardless of text direction */
.centered-hero { display: flex; flex-direction: column; align-items: center; text-align: center !important; margin: 0 auto; z-index: 2; margin-top: 80px; max-width: 800px; width: 100%; }
html[dir="rtl"] .centered-hero { text-align: center !important; align-items: center !important; }
html[dir="ltr"] .centered-hero { text-align: center !important; align-items: center !important; }

/* Ambient Glow Orbs */
.ambient-glow { position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.4; z-index: 0; pointer-events: none; }
.orb-1 { top: -10%; left: -10%; width: 500px; height: 500px; background: var(--accent); }
.orb-2 { bottom: -20%; right: -10%; width: 600px; height: 600px; background: rgba(16, 185, 129, 0.2); }

/* Code Wave Background */
.code-wave-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; opacity: 0.35; mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%); -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 90%); }
.code-line { position: absolute; font-family: var(--font-code); font-size: 1rem; color: var(--accent); white-space: nowrap; transform: rotate(-5deg); opacity: 0.5; }
.line-1 { top: 20%; left: -10%; animation: slide 20s linear infinite; font-size: 1.2rem; }
.line-2 { top: 40%; left: 0; animation: slide 30s linear infinite reverse; color: #64748B; }
.line-3 { top: 60%; left: -20%; animation: slide 15s linear infinite; color: var(--white); opacity: 0.1; }
.line-4 { top: 80%; left: 5%; animation: slide 25s linear infinite reverse; }
.line-5 { top: 90%; left: -15%; animation: slide 22s linear infinite; letter-spacing: 4px; color: var(--border-dark); }
@keyframes slide { 0% { transform: rotate(-5deg) translateX(-10%); } 50% { transform: rotate(-5deg) translateX(10%); } 100% { transform: rotate(-5deg) translateX(-10%); } }

.hero-container { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; width: 100%; gap: 60px; z-index: 2; margin-top: 60px; }
.hero-content { flex: 1; z-index: 2; }
html[dir="rtl"] .hero-content:not(.centered-hero) { text-align: right; }

/* Enhanced Tags and Typography */
.tech-tag { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.3); color: var(--accent); border-radius: 50px; font-family: var(--font-code); font-size: 0.85rem; margin-bottom: 20px; box-shadow: 0 0 15px rgba(37, 99, 235, 0.15); }
.live-dot { width: 8px; height: 8px; background: #10B981; border-radius: 50%; animation: pulse-dot 1.5s infinite; }
@keyframes pulse-dot { 0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); } 70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); } 100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); } }

.text-gradient { background: linear-gradient(to right, #FFFFFF, #94A3B8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.sharp-title { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 900; line-height: 1.05; letter-spacing: -2px; margin-bottom: 1.5rem; }
.sharp-sub { font-size: clamp(1.1rem, 1.5vw, 1.2rem); color: #94A3B8; margin-bottom: 2.5rem; max-width: 550px; font-weight: 400; line-height: 1.7; }
.centered-hero .sharp-sub { max-width: 700px; margin-left: auto; margin-right: auto; text-align: center !important; }

/* Button Styling */
.sharp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--white); color: var(--black); padding: 1rem 2.2rem; text-decoration: none; font-weight: 600; font-size: 1.05rem; border-radius: 8px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border: 1px solid transparent; position: relative; overflow: hidden; cursor: pointer; }
.sharp-btn:hover { background: rgba(255,255,255,0.05); color: var(--white); border-color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255,255,255,0.1); }
.sharp-btn .btn-arrow { transition: transform 0.2s; }
.sharp-btn:hover .btn-arrow { transform: translateX(5px); }
html[dir="rtl"] .sharp-btn:hover .btn-arrow { transform: translateX(-5px) rotate(180deg); }
html[dir="rtl"] .btn-arrow { transform: rotate(180deg); }
.full-width { width: 100%; }

/* --- 3D Tilt Setup --- */
.tilt-card {
    transition: box-shadow 0.3s ease;
    transform-style: preserve-3d;
}

/* --- Visual Hero Showcase Area --- */
.hero-image-wrapper { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; height: 450px; z-index: 2; perspective: 1000px; }
.hero-main-frame { width: 380px; height: 320px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.15); position: relative; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8); }
.hero-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.95) contrast(1.05); transition: transform 0.5s; }
.hero-main-frame:hover .hero-img { transform: scale(1.05); }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(5,5,5,0.8)); }

/* Floating Elements */
.float-slow { animation: float 6s ease-in-out infinite; }
.float-medium { animation: float 5s ease-in-out infinite 1s; }
.float-fast { animation: float 4s ease-in-out infinite 0.5s; }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-12px); } 100% { transform: translateY(0px); } }

.floating-dashboard { position: absolute; top: 10px; right: -20px; width: 220px; background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 15px; box-shadow: 0 20px 40px rgba(0,0,0,0.6); z-index: 3; }
html[dir="rtl"] .floating-dashboard { right: auto; left: -20px; }
.dash-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 8px; margin-bottom: 12px; }
.dash-dots { display: flex; gap: 5px; }
.dot { width: 8px; height: 8px; border-radius: 50%; } .dot.red { background: #EF4444; } .dot.yellow { background: #F59E0B; } .dot.green { background: #10B981; }
.dash-title { font-family: var(--font-code); font-size: 0.65rem; color: #94A3B8; letter-spacing: 1px; }
.dash-stat { display: flex; justify-content: space-between; font-size: 0.8rem; margin-bottom: 8px; }
.stat-lbl { color: #94A3B8; }
.stat-val.text-green { color: #10B981; font-weight: 700; font-family: var(--font-code); }
.dash-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; position: relative; }
.dash-bar::after { content: ''; position: absolute; top:0; left:0; height:100%; width: 95%; background: #10B981; }

.sharp-badge { position: absolute; bottom: -10px; left: -20px; background: rgba(15, 23, 42, 0.95); backdrop-filter: blur(15px); padding: 14px 22px; display: flex; align-items: center; gap: 12px; border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; box-shadow: 0 15px 35px rgba(0,0,0,0.6); z-index: 4; }
html[dir="rtl"] .sharp-badge { left: auto; right: -20px; }
.sharp-badge .badge-icon { font-size: 1.8rem; color: #F59E0B; }
.sharp-badge .badge-text strong { display: block; color: var(--white); font-size: 1rem; font-weight: 700; }
.sharp-badge .badge-text small { color: #94A3B8; font-family: var(--font-code); font-size: 0.75rem; }

/* --- Marquee --- */
.accent-bg { background: var(--accent); color: var(--white); border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.tech-marquee-wrapper { padding: 12px 0; overflow: hidden; display: flex; white-space: nowrap; }
.tech-marquee { display: flex; gap: 40px; animation: marqueeScroll 25s linear infinite; }
.tech-marquee span { font-family: var(--font-code); font-size: 0.9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- Stats Counter Bar --- */
.stats-section { padding: 60px 5%; border-bottom: 1px solid var(--border-dark); }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; text-align: center; }
.stat-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border-dark); padding: 30px 20px; border-radius: 12px; transition: transform 0.3s; }
.stat-card:hover { transform: translateY(-5px); border-color: rgba(37, 99, 235, 0.4); }
.stat-number { font-size: 2.8rem; font-weight: 900; font-family: var(--font-code); color: var(--white); margin-bottom: 5px; background: linear-gradient(180deg, #FFFFFF, #94A3B8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-desc { color: #94A3B8; font-size: 0.95rem; font-weight: 500; }

/* --- Showcase Grid (For Solutions & Hardware) --- */
.solutions-showcase, .hardware-grid-section { background-color: var(--off-white); color: var(--text-main); padding: 90px 5%; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; font-weight: 900; color: var(--text-main); letter-spacing: -1px; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; }
.text-white { color: var(--white) !important; }
.text-muted { color: #94A3B8 !important; }

.showcase-grid { display: grid; grid-template-columns: repeat(1, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
@media (min-width: 768px) { .showcase-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { 
    .showcase-grid { grid-template-columns: repeat(4, 1fr); }
    .hardware-grid-section .showcase-grid { grid-template-columns: repeat(2, 1fr); } 
}

/* PREMIUM PRODUCT ANIMATIONS */
.showcase-card { 
    display: flex; 
    flex-direction: column; 
    background: var(--white); 
    border: 1px solid var(--border-light); 
    border-radius: 16px; 
    overflow: hidden; 
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.03); 
    height: 100%; 
    position: relative;
}
html[dir="rtl"] .showcase-card { text-align: right; }
.showcase-card:hover { border-color: #CBD5E1; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.08); }

/* The Glass Shine Effect */
.product-card::before {
    content: "";
    position: absolute;
    top: 0; 
    left: -150%; 
    width: 50%; 
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    animation: premiumShine 6s infinite cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    pointer-events: none;
}
@keyframes premiumShine {
    0% { left: -150%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.showcase-img-wrap { height: 200px; width: 100%; position: relative; overflow: hidden; flex-shrink: 0; }
.hardware-card .showcase-img-wrap { height: 250px; }

/* Smooth Image Scale Optics */
.showcase-img-wrap img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}
.showcase-card:hover .showcase-img-wrap img { transform: scale(1.12); }

.img-tag { position: absolute; bottom: 12px; left: 12px; background: rgba(15, 23, 42, 0.85); backdrop-filter: blur(8px); color: var(--white); padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-family: var(--font-code); font-weight: 600; z-index: 5; }
html[dir="rtl"] .img-tag { left: auto; right: 12px; }

.showcase-body { padding: 25px; display: flex; flex-direction: column; flex: 1; z-index: 2; background: var(--white); }
.showcase-body h3 { font-size: 1.25rem; font-weight: 800; color: var(--text-main); margin-bottom: 12px; letter-spacing: -0.5px; }
.showcase-body p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 0; }
.specs { font-family: var(--font-code); font-size: 0.85rem !important; color: var(--accent) !important; margin-bottom: 15px !important; }

/* Pricing Elements */
.pricing-block { font-size: 2.2rem; font-family: var(--font-main); color: var(--text-main); font-weight: 900; margin: 15px 0 25px 0; display: flex; align-items: baseline; gap: 5px; }
.period { font-size: 1rem; color: var(--text-muted); font-weight: 500; font-family: var(--font-main); }
.hard-list { list-style: none; margin-bottom: 30px; display: flex; flex-direction: column; gap: 12px; }
.hard-list li { position: relative; padding-left: 20px; font-size: 0.95rem; color: var(--text-muted); }
.hard-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #10B981; font-weight: bold; }
html[dir="rtl"] .hard-list li { padding-left: 0; padding-right: 20px; }
html[dir="rtl"] .hard-list li::before { left: auto; right: 0; }
.highlight-line { background: rgba(37,99,235,0.05); padding: 12px; border-radius: 6px; border-left: 3px solid var(--accent); margin-top: 10px; }
html[dir="rtl"] .highlight-line { border-left: none; border-right: 3px solid var(--accent); }
.highlight-line strong { color: var(--text-main); display: block; margin-bottom: 4px; }
.purchase-option { font-size: 0.8rem; color: var(--text-muted); text-align: center; margin-top: 15px; font-family: var(--font-code); }

/* --- Sectors & Partnership Grid --- */
.sectors-section { padding: 90px 5%; border-top: 1px solid var(--border-dark); }
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }
.sector-card { background: rgba(18, 18, 18, 0.8); border: 1px solid var(--border-dark); padding: 30px 25px; border-radius: 14px; }
html[dir="rtl"] .sector-card { text-align: right; }
.sector-card:hover { border-color: var(--accent); background: rgba(37, 99, 235, 0.05); }
.sector-icon { font-size: 2.5rem; margin-bottom: 15px; }
.sector-card h4 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.sector-card p { color: #94A3B8; font-size: 0.9rem; line-height: 1.6; }

/* --- Glass Cards for Core Architecture --- */
.light-section { background-color: var(--off-white); color: var(--text-main); padding: 90px 5%; border-top: 1px solid var(--border-light); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
.glass-card { background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.6); border-radius: 16px; padding: 40px 30px; box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03); position: relative; overflow: hidden; }
html[dir="rtl"] .glass-card { text-align: right; }
.glass-card:hover { box-shadow: 0 25px 30px -10px rgba(0, 0, 0, 0.08); border-color: rgba(37, 99, 235, 0.2); }
.panel-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }
.glass-card h3 { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.5px; color: var(--text-main); }
.glass-card p { color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
.svg-icon-wrapper { width: 48px; height: 48px; background: #F1F5F9; border: 1px solid #E2E8F0; border-radius: 10px; display: flex; justify-content: center; align-items: center; color: var(--text-main); transition: all 0.4s ease; }
.svg-icon-wrapper svg { width: 24px; height: 24px; }
.glass-card:hover .svg-icon-wrapper { background: var(--accent); color: var(--white); border-color: var(--accent); transform: scale(1.1); }

/* --- Contact Page Grid Styles --- */
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; max-width: 800px; margin: 0 auto; }
.contact-card { text-align: center; text-decoration: none; display: flex; flex-direction: column; align-items: center; padding: 50px 30px; border-color: rgba(37, 99, 235, 0.3); }
.contact-card:hover { border-color: var(--accent); }
.contact-icon { width: 60px; height: 60px; margin-bottom: 20px; }
.contact-icon svg { width: 100%; height: 100%; }
.contact-card h3 { color: var(--text-main); font-size: 1.4rem; margin-bottom: 10px; }
.contact-card p { color: var(--text-muted); font-size: 1.1rem; font-family: var(--font-code); margin-bottom: 20px; }
.action-text { font-size: 0.85rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }

/* --- Deployment Process Timeline --- */
.process-section { padding-top: 80px; padding-bottom: 120px; }
.process-timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; max-width: 1200px; margin: 0 auto; position: relative; }
.timeline-line { position: absolute; top: 40px; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, #E2E8F0, transparent); z-index: 0; }
@media (max-width: 968px) { .timeline-line { display: none; } }

.process-step { background: transparent; padding: 20px; position: relative; z-index: 1; }
html[dir="rtl"] .process-step { text-align: right; }
.step-number { font-family: var(--font-code); font-size: 4rem; font-weight: 900; color: #F1F5F9; line-height: 1; margin-bottom: 15px; transition: all 0.4s; text-shadow: 2px 2px 0px #E2E8F0; }
.process-step:hover .step-number { color: var(--white); text-shadow: 2px 2px 0px var(--accent); transform: translateY(-5px); }
.process-step h4 { font-size: 1.3rem; font-weight: 800; color: var(--text-main); margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; }

/* --- Dark Pro Footer --- */
.site-footer { background: var(--black); border-top: 1px solid var(--border-dark); padding: 80px 5% 30px 5%; color: var(--white); }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-brand h2 { font-size: 1.8rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 15px; }
.footer-brand h2::after { content: '.'; color: var(--accent); }
.footer-brand p { color: #94A3B8; max-width: 400px; }
html[dir="rtl"] .footer-brand, html[dir="rtl"] .footer-contact { text-align: right; }
.footer-contact h4 { font-size: 1.1rem; margin-bottom: 20px; color: var(--white); }
.footer-contact p { color: #94A3B8; margin-bottom: 15px; font-size: 0.95rem; }
.footer-contact a { color: var(--accent); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--border-dark); padding-top: 30px; text-align: center; color: #64748B; font-size: 0.85rem; }

/* --- Floating WhatsApp --- */
.whatsapp-float { position: fixed; bottom: 35px; right: 35px; background-color: var(--whatsapp-green); border-radius: 50%; width: 60px; height: 60px; display: flex; justify-content: center; align-items: center; box-shadow: 0 10px 25px rgba(0, 230, 118, 0.4); z-index: 999; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.whatsapp-float svg { fill: var(--white); }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 35px rgba(0, 230, 118, 0.6); }

/* --- Responsive Adjustments --- */
@media (max-width: 968px) {
    .hero-container { flex-direction: column; text-align: center; margin-top: 100px; }
    .hero-content:not(.centered-hero), html[dir="rtl"] .hero-content:not(.centered-hero), .sharp-sub { text-align: center; margin-left: auto; margin-right: auto; }
    .hero-image-wrapper { height: auto; padding-bottom: 60px; margin-top: 20px; }
    .hero-main-frame { width: 100%; max-width: 320px; height: 260px; }
    .floating-dashboard { display: none; }
    .sharp-badge { bottom: -20px; left: 50%; transform: translateX(-50%); width: 85%; justify-content: center; }
    html[dir="rtl"] .sharp-badge { right: 50%; transform: translateX(50%); }
    .sharp-title { font-size: 2.6rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    html[dir="rtl"] .footer-content { text-align: center; }
    .footer-brand p { margin: 0 auto; }
    .form-row { grid-template-columns: 1fr; }
}

/* --- Products Page Filter System --- */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-light);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--font-main);
    font-size: 0.95rem;
}

.filter-btn:hover {
    background: rgba(37, 99, 235, 0.05);
    color: var(--accent);
    border-color: var(--accent);
}

.filter-btn.active-filter {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

/* Cinematic Product Transitions */
.product-card {
    transition: opacity 0.4s ease-out, transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center center;
}

/* --- Image Slider within Product Cards --- */
.image-slider {
    position: relative;
    overflow: hidden;
}
.image-slider .slides {
    width: 100%;
    height: 100%;
    position: relative;
}
.image-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}
.image-slider .slide.active {
    opacity: 1;
    z-index: 2;
}
.showcase-card:hover .image-slider .slide.active {
    transform: scale(1.12);
}

/* Slider Arrows */
.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(15, 23, 42, 0.4);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 11; /* Above the glass shine */
    opacity: 0;
    transition: opacity 0.3s, background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-slider:hover .slide-arrow {
    opacity: 1;
}
.slide-arrow:hover {
    background: rgba(37, 99, 235, 0.9);
}
.prev-arrow { left: 10px; }
.next-arrow { right: 10px; }
html[dir="rtl"] .prev-arrow { left: auto; right: 10px; transform: translateY(-50%) rotate(180deg); }
html[dir="rtl"] .next-arrow { right: auto; left: 10px; transform: translateY(-50%) rotate(180deg); }

/* Slider Dots */
.slide-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 11; /* Above the glass shine */
}
.slide-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: 1px solid rgba(0,0,0,0.2);
}
.slide-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}