/* ========================================
   ProgMaker - Professional Software Company
   RTL & LTR Support
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors from Logo */
    --primary-color: #00d85a;
    --primary-dark: #00b84a;
    --primary-light: #4ee88a;
    
    /* Background Colors - Light Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #1a2332;
    --bg-card: #ffffff;
    
    /* Text Colors */
    --text-primary: #1a2332;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --text-white: #ffffff;
    
    /* Border & Shadow */
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #1a2332 0%, #2d3a4f 50%, #1a2332 100%);
    --gradient-text: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Font Family */
    --font-arabic: 'Tajawal', sans-serif;
    --font-english: 'Poppins', sans-serif;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-arabic);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body[dir="ltr"] {
    font-family: var(--font-english);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.atom-loader {
    width: 100px;
    height: 100px;
    position: relative;
    margin: 0 auto;
}

.orbit {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: rotate 2s linear infinite;
}

.orbit-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    animation-duration: 3s;
}

.orbit-2 {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation-duration: 2s;
    animation-direction: reverse;
}

.orbit-3 {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    animation-duration: 1.5s;
}

.nucleus {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 20px var(--primary-color);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

.prog-text {
    color: var(--text-white);
    font-weight: 700;
    margin-top: 20px;
}

.prog-text span {
    color: var(--primary-color);
}

.loading-text {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 10px;
}

/* Navbar */
#mainNavbar {
    padding: 15px 0;
    transition: var(--transition);
    background: transparent;
}

#mainNavbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

#mainNavbar.scrolled .nav-link,
#mainNavbar.scrolled .logo-text {
    color: var(--text-primary);
}

.navbar-brand {
    padding: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-svg {
    animation: float 3s ease-in-out infinite;
}

.logo-svg .orbit {
    animation: rotate 4s linear infinite;
}

.logo-svg .electron {
    animation: orbit 3s linear infinite;
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(35px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(35px) rotate(-360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    transition: var(--transition);
}

.logo-text .prog {
    color: var(--text-white);
}

.logo-text .maker {
    color: var(--primary-color);
}

#mainNavbar.scrolled .logo-text .prog {
    color: var(--text-primary);
}

.nav-link {
    color: var(--text-white);
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

#mainNavbar.scrolled .nav-link {
    color: var(--text-primary);
}

#mainNavbar.scrolled .nav-link:hover,
#mainNavbar.scrolled .nav-link.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-lang {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

#mainNavbar.scrolled .btn-lang {
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-lang:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.btn-consult {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
}

.btn-consult:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 216, 90, 0.3);
    color: var(--text-white);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: particle-float 15s infinite;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(26, 35, 50, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 216, 90, 0.1);
    border: 1px solid rgba(0, 216, 90, 0.3);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease;
}

.hero-badge i {
    font-size: 18px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 5px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 216, 90, 0.4);
    color: var(--text-white);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: var(--text-white);
    color: var(--bg-dark);
    border-color: var(--text-white);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-weight: 500;
    animation: float-card 3s ease-in-out infinite;
}

.float-card i {
    font-size: 20px;
    color: var(--primary-color);
}

.card-1 { top: 10%; left: 0; animation-delay: 0s; }
.card-2 { top: 5%; right: 10%; animation-delay: 0.5s; }
.card-3 { top: 40%; left: -5%; animation-delay: 1s; }
.card-4 { top: 35%; right: 0; animation-delay: 1.5s; }
.card-5 { bottom: 25%; left: 5%; animation-delay: 2s; }
.card-6 { bottom: 20%; right: 5%; animation-delay: 2.5s; }

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.main-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.code-window {
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 350px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.window-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-dots {
    display: flex;
    gap: 6px;
}

.window-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ff5f56; }
.window-dots span:nth-child(2) { background: #ffbd2e; }
.window-dots span:nth-child(3) { background: #27c93f; }

.window-title {
    color: var(--text-light);
    font-size: 12px;
}

.window-content {
    padding: 20px;
}

.window-content pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
}

.code-keyword { color: #c792ea; }
.code-class { color: #ffcb6b; }
.code-function { color: #82aaff; }
.code-variable { color: #f78c6c; }
.code-string { color: #c3e88d; }

.tech-stack {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.tech-item {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    animation: tech-bounce 2s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.2s);
}

@keyframes tech-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 12px;
    z-index: 2;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--text-light);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

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

.section-subtitle {
    display: inline-block;
    background: rgba(0, 216, 90, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-description {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    background: var(--bg-secondary);
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

.service-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 216, 90, 0.1);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 5px 15px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
}

.service-icon {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    opacity: 0.1;
    transform: rotate(45deg);
    transition: var(--transition);
}

.service-card:hover .icon-bg {
    transform: rotate(0deg);
    opacity: 0.2;
}

.service-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-features li i {
    color: var(--primary-color);
    font-size: 12px;
}

/* Systems Section */
.systems-tabs {
    margin-top: 40px;
}

.nav-pills {
    gap: 10px;
    margin-bottom: 40px;
}

.nav-pills .nav-link {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: var(--radius);
    padding: 12px 25px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-pills .nav-link i {
    font-size: 18px;
}

.nav-pills .nav-link.active {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.system-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.system-mockup {
    background: var(--bg-dark);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.mockup-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-white);
    font-size: 14px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-content {
    padding: 20px;
}

/* POS Preview */
.pos-preview {
    display: flex;
    gap: 15px;
    height: 250px;
}

.pos-sidebar {
    width: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.pos-category {
    padding: 8px;
    text-align: center;
    color: var(--text-light);
    font-size: 11px;
    border-radius: var(--radius-sm);
    margin-bottom: 5px;
    cursor: pointer;
}

.pos-category.active {
    background: var(--primary-color);
    color: var(--text-white);
}

.pos-main {
    flex: 1;
    display: flex;
    gap: 15px;
}

.pos-products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.pos-product {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 15px;
    text-align: center;
    color: var(--text-white);
}

.pos-product i {
    font-size: 24px;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.pos-product .price {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 5px;
}

.pos-cart {
    width: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.cart-header {
    color: var(--text-white);
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.cart-items {
    flex: 1;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    font-size: 11px;
    margin-bottom: 5px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    color: var(--primary-color);
    font-weight: 600;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.btn-pay {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
}

/* E-commerce Preview */
.ecom-preview {
    height: 250px;
}

.ecom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.ecom-header .logo {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.ecom-nav {
    display: flex;
    gap: 15px;
}

.ecom-nav span {
    color: var(--text-light);
    font-size: 12px;
}

.ecom-products {
    display: flex;
    gap: 15px;
}

.ecom-product-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 15px;
    text-align: center;
}

.product-img {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.product-img i {
    font-size: 40px;
    color: var(--primary-color);
}

.product-name {
    display: block;
    color: var(--text-white);
    font-size: 12px;
    margin-bottom: 5px;
}

.product-price {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.ecom-product-card button {
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    padding: 5px 15px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    cursor: pointer;
}

/* HR Preview */
.hr-preview {
    height: 250px;
}

.hr-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.hr-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 15px;
    text-align: center;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 216, 90, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.stat-icon i {
    color: var(--primary-color);
}

.stat-value {
    display: block;
    color: var(--text-white);
    font-size: 20px;
    font-weight: 700;
}

.stat-label {
    color: var(--text-light);
    font-size: 11px;
}

.hr-emp-header {
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 10px;
}

.hr-emp-list {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.hr-emp-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hr-emp-item:last-child {
    border-bottom: none;
}

.emp-name {
    color: var(--text-white);
    font-size: 12px;
}

.emp-dept {
    color: var(--text-light);
    font-size: 11px;
}

.emp-status {
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 10px;
}

.emp-status.present {
    background: rgba(0, 216, 90, 0.2);
    color: var(--primary-color);
}

/* Invoice Preview */
.invoice-preview {
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.inv-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.inv-title {
    color: var(--text-white);
    font-weight: 600;
}

.inv-date {
    color: var(--text-light);
    font-size: 12px;
}

.inv-client {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inv-item-header,
.inv-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.inv-item-header {
    color: var(--text-light);
    font-size: 11px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inv-item {
    color: var(--text-white);
    font-size: 12px;
}

.inv-total {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    color: var(--primary-color);
    font-weight: 700;
}

/* ERP Preview */
.erp-preview {
    height: 250px;
}

.erp-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.erp-mod {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 15px;
    text-align: center;
}

.erp-mod i {
    display: block;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.erp-mod span {
    color: var(--text-light);
    font-size: 11px;
}

.erp-dashboard {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 20px;
    height: 100px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 15px;
}

.erp-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100%;
}

.chart-bar {
    width: 30px;
    background: var(--gradient-primary);
    border-radius: 3px 3px 0 0;
    animation: chart-grow 1s ease-out;
}

@keyframes chart-grow {
    from { height: 0 !important; }
}

/* Education Preview */
.edu-preview {
    height: 250px;
}

.edu-courses {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.edu-course {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    padding: 15px;
}

.course-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 216, 90, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.course-info {
    flex: 1;
}

.course-name {
    display: block;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 3px;
}

.course-students {
    color: var(--text-light);
    font-size: 12px;
}

/* System Info */
.system-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.system-info p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.system-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.system-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.system-features li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Why Us Section */
.why-us-section {
    background: var(--bg-secondary);
}

.why-us-content .section-title {
    text-align: right;
}

.why-us-content .section-description {
    text-align: right;
    margin-right: 0;
}

.why-us-features {
    margin-top: 40px;
}

.why-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: var(--text-white);
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.feature-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* Why Us Image */
.why-us-image {
    position: relative;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-illustration {
    position: relative;
    width: 350px;
    height: 350px;
}

.tech-circle {
    position: absolute;
    border: 2px dashed rgba(0, 216, 90, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.circle-1 {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circle-2 {
    width: 75%;
    height: 75%;
    top: 12.5%;
    left: 12.5%;
    animation-direction: reverse;
    animation-duration: 15s;
}

.circle-3 {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    animation-duration: 10s;
}

.tech-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 216, 90, 0.4);
}

.tech-center i {
    font-size: 40px;
    color: var(--text-white);
}

.tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.tech-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    animation: tech-orbit 10s linear infinite;
}

.tech-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.icon-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.icon-2 { top: 20%; right: 0; animation-delay: -1.6s; }
.icon-3 { bottom: 20%; right: 0; animation-delay: -3.2s; }
.icon-4 { bottom: 0; left: 50%; transform: translateX(-50%); animation-delay: -4.8s; }
.icon-5 { bottom: 20%; left: 0; animation-delay: -6.4s; }
.icon-6 { top: 20%; left: 0; animation-delay: -8s; }

@keyframes tech-orbit {
    0% { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

.floating-badge {
    position: absolute;
    background: var(--bg-card);
    padding: 10px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    animation: float-badge 3s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary-color);
}

.badge-1 { top: 10%; left: 0; animation-delay: 0s; }
.badge-2 { top: 50%; right: 0; animation-delay: 1s; }
.badge-3 { bottom: 10%; left: 10%; animation-delay: 2s; }

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Portfolio Section */
.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px 25px;
    border-radius: var(--radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.portfolio-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.portfolio-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: var(--transition);
}

.web-bg { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.ecommerce-bg { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.system-bg { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

.portfolio-placeholder i {
    font-size: 60px;
    margin-bottom: 15px;
}

.portfolio-placeholder span {
    font-weight: 600;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-link,
.portfolio-zoom {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transform: translateY(20px);
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-link,
.portfolio-card:hover .portfolio-zoom {
    transform: translateY(0);
}

.portfolio-link:hover,
.portfolio-zoom:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.portfolio-category {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 20px;
}

.author-info h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--text-primary);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    color: var(--text-white);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons .btn-light {
    background: var(--text-white);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
}

.cta-buttons .btn-light:hover {
    background: var(--bg-dark);
    color: var(--text-white);
}

.cta-buttons .btn-outline-light {
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
}

.cta-buttons .btn-outline-light:hover {
    background: var(--text-white);
    color: var(--primary-color);
}

/* Contact Section */
.contact-info {
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: var(--text-white);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-text p {
    color: var(--text-secondary);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 12px 15px;
    transition: var(--transition);
    background: var(--bg-primary);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 216, 90, 0.1);
    outline: none;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 80px 0 0;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--text-white);
}

.footer-about p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.footer-newsletter h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.footer-newsletter p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 12px 15px;
    color: var(--text-white);
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius);
    padding: 12px 20px;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-light);
    margin: 0;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 20px rgba(0, 216, 90, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 216, 90, 0.5);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        height: 400px;
        margin-top: 40px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .why-us-content .section-title,
    .why-us-content .section-description {
        text-align: center;
    }
    
    .why-us-features {
        max-width: 500px;
        margin: 40px auto 0;
    }
    
    .why-us-image {
        margin-top: 40px;
    }
    
    .tech-illustration {
        width: 280px;
        height: 280px;
    }
    
    @keyframes tech-orbit {
        0% { transform: rotate(0deg) translateX(120px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(120px) rotate(-360deg); }
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .code-window {
        width: 100%;
        max-width: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .nav-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }
    
    .btn-consult {
        width: 100%;
        text-align: center;
    }
    
    .system-card {
        padding: 20px;
    }
    
    .pos-preview {
        flex-direction: column;
        height: auto;
    }
    
    .pos-sidebar {
        width: 100%;
        display: flex;
        gap: 5px;
    }
    
    .pos-main {
        flex-direction: column;
    }
    
    .pos-cart {
        width: 100%;
    }
}

/* LTR Styles */
body[dir="ltr"] .why-us-content .section-title,
body[dir="ltr"] .why-us-content .section-description {
    text-align: left;
}

body[dir="ltr"] .footer-links a:hover {
    padding-right: 0;
    padding-left: 5px;
}

body[dir="ltr"] .back-to-top {
    left: auto;
    right: 30px;
}

body[dir="ltr"] .featured-badge {
    left: auto;
    right: 15px;
}

body[dir="ltr"] .inv-total {
    text-align: right;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========================================
   Integrated System (POS + E-Commerce)
   ======================================== */

.integrated-mockup {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.sync-dashboard {
    padding: 20px;
}

.sync-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(0, 216, 90, 0.1);
    border-radius: var(--radius);
}

.sync-header i {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.sync-channels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.channel-box {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 20px 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.channel-box.online {
    border-color: #3b82f6;
}

.channel-box.pos {
    border-color: var(--primary-color);
}

.channel-box i {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.channel-box.online i {
    color: #3b82f6;
}

.channel-box.pos i {
    color: var(--primary-color);
}

.channel-box span {
    display: block;
    color: var(--text-white);
    font-size: 12px;
    font-weight: 600;
}

.channel-status {
    display: inline-block;
    margin-top: 8px;
    padding: 3px 10px;
    border-radius: var(--radius-xl);
    font-size: 10px;
    font-weight: 600;
}

.channel-status.online {
    background: rgba(0, 216, 90, 0.2);
    color: var(--primary-color);
}

.sync-arrows {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--primary-color);
}

.sync-arrows i {
    font-size: 14px;
    animation: arrow-pulse 1.5s ease-in-out infinite;
}

.sync-arrows i:first-child {
    animation-delay: 0s;
}

.sync-arrows i:last-child {
    animation-delay: 0.75s;
}

@keyframes arrow-pulse {
    0%, 100% { opacity: 1; transform: translateX(0); }
    50% { opacity: 0.5; transform: translateX(5px); }
}

.unified-inventory {
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius);
    padding: 15px;
}

.inv-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-white);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inv-title i {
    color: var(--primary-color);
}

.inv-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.inv-item:last-child {
    border-bottom: none;
}

.item-name {
    color: var(--text-light);
    font-size: 12px;
}

.item-stock {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
}

.item-stock.warning {
    color: #f59e0b;
}

.system-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--text-white);
    padding: 6px 15px;
    border-radius: var(--radius-xl);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.system-badge i {
    font-size: 14px;
}

.system-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.system-actions .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.system-actions .btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: var(--text-white);
}

@media (max-width: 767px) {
    .sync-channels {
        flex-direction: column;
    }
    
    .sync-arrows {
        flex-direction: row;
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .system-actions {
        flex-direction: column;
    }
}
