/* ========================================
   Baro - Marketing Website Styles
   ======================================== */

:root {
    /* Colors */
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #6366f1;
    --accent: #f59e0b;
    
    --bg-dark: #0f172a;
    --bg-primary: #1e293b;
    --bg-secondary: #334155;
    --bg-card: #1e293b;
    
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    --border: #334155;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ========================================
   Global Animations
   ======================================== */

/* Fade In Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes wave {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    75% { transform: translateY(5px); }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

/* Hover Scale Effect */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Hover Glow Effect */
.hover-glow:hover {
    box-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.btn-outline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-outline:hover::after {
    height: 100%;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--bg-dark);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-outline-white {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--primary-light), var(--primary));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
    animation: shimmerBadge 3s ease-in-out infinite;
}

@keyframes shimmerBadge {
    0% { left: -100%; }
    50%, 100% { left: 150%; }
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: white;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 10px 20px;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-buttons .nav-cta {
    white-space: nowrap;
}

.nav-buttons .nav-cta i {
    margin-left: 6px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    padding: 20px;
    border-bottom: 1px solid var(--border);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu a {
    display: block;
    padding: 12px;
    color: var(--text-primary);
    font-weight: 500;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 30px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease forwards;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-stats {
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-image {
    animation: fadeInRight 1s ease 0.5s forwards;
    opacity: 0;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mockup */
.mockup {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mockup-header {
    display: flex;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.mockup-content {
    display: flex;
    padding: 20px;
    min-height: 350px;
}

.mockup-sidebar {
    width: 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 20px;
    border-left: 1px solid var(--border);
}

.sidebar-item {
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.sidebar-item.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.mockup-main {
    flex: 1;
    padding-right: 20px;
}

.mockup-stats {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.mini-stat {
    flex: 1;
    height: 60px;
    border-radius: 10px;
}

.mini-stat.blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.mini-stat.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.mini-stat.orange { background: linear-gradient(135deg, #f59e0b, #d97706); }

.mockup-tables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mini-table {
    height: 70px;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 2px solid var(--border);
}

.mini-table.active {
    border-color: #ef4444;
    background: linear-gradient(135deg, var(--bg-secondary), rgba(239, 68, 68, 0.1));
}

/* Map Mockup Styles */
.map-mockup {
    position: relative;
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
}

.mockup-title {
    flex: 1;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-right: 10px;
}

.map-content {
    display: block !important;
    position: relative;
    padding: 0 !important;
}

.map-area {
    position: relative;
    min-height: 350px;
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        var(--bg-dark);
    background-size: 100% 100%;
}

/* Map Table Items */
.map-table-item {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floatTable 3s ease-in-out infinite;
}

.map-table-item:nth-child(2) { animation-delay: 0.5s; }
.map-table-item:nth-child(3) { animation-delay: 1s; }
.map-table-item:nth-child(4) { animation-delay: 1.5s; }
.map-table-item:nth-child(5) { animation-delay: 2s; }
.map-table-item:nth-child(6) { animation-delay: 2.5s; }

@keyframes floatTable {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.map-table-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    transition: transform 0.3s ease;
}

.map-table-circle:hover {
    transform: scale(1.1);
}

.map-table-circle.free {
    background: linear-gradient(145deg, #22c55e, #16a34a);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.table-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

.table-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.4);
    animation: tablePulse 2s ease-out infinite;
}

@keyframes tablePulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.map-table-timer {
    margin-top: 6px;
    padding: 3px 10px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.9));
    border-radius: 10px;
    font-size: 0.75rem;
    font-family: 'Courier New', monospace;
    font-weight: 600;
    color: white;
    animation: timerGlow 1.5s ease-in-out infinite alternate;
}

@keyframes timerGlow {
    0% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.5); }
    100% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.8); }
}

.map-table-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    border: 2px solid var(--bg-dark);
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Map Decorations */
.map-decoration {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 0.75rem;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.map-decoration i {
    color: var(--primary);
}

/* Map Stats Overlay */
.map-stats-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 12px;
    background: rgba(30, 41, 59, 0.9);
    padding: 10px 16px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
}

.map-stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
}

.map-stat-item .stat-icon {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.map-stat-item .stat-icon.red { background: #ef4444; }
.map-stat-item .stat-icon.green { background: #22c55e; }

/* ===== Universal Venue Table Design ===== */
.venue-floor {
    background: 
        radial-gradient(circle at 20% 30%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%) !important;
}

.venue-table {
    position: absolute;
    transition: transform 0.3s ease, z-index 0s;
}

.venue-table:hover {
    transform: scale(1.08);
    z-index: 10;
}

.venue-table-card {
    position: relative;
    width: 110px;
    height: 80px;
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 12px;
    border: 2px solid rgba(239, 68, 68, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 
        0 4px 20px rgba(239, 68, 68, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.venue-table.active .venue-table-card {
    animation: activeGlow 2s ease-in-out infinite alternate;
}

@keyframes activeGlow {
    0% { box-shadow: 0 4px 20px rgba(239, 68, 68, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05); }
    100% { box-shadow: 0 4px 30px rgba(239, 68, 68, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.05); }
}

.venue-table-card.free {
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 
        0 4px 20px rgba(34, 197, 94, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Status Indicator */
.table-status-indicator {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
    animation: statusPulse 2s ease-in-out infinite;
}

.venue-table-card.free .table-status-indicator {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: none;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Table Number */
.venue-table-card .table-num {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

/* Timer */
.venue-table-card .table-timer {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.15);
    padding: 2px 8px;
    border-radius: 6px;
}

/* Free Status Text */
.table-status-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.15);
    padding: 2px 10px;
    border-radius: 6px;
}

/* Orders Badge */
.table-orders-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    display: flex;
    align-items: center;
    gap: 3px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.table-orders-badge i {
    font-size: 0.55rem;
}

/* VIP Badge */
.table-vip-badge {
    position: absolute;
    top: -8px;
    left: -8px;
    display: flex;
    align-items: center;
    gap: 3px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.4);
}

.table-vip-badge i {
    font-size: 0.5rem;
}

/* Amount Display */
.table-amount {
    font-size: 0.7rem;
    font-weight: 700;
    color: #10b981;
}

/* Responsive Venue Tables */
@media (max-width: 768px) {
    .venue-table-card {
        width: 90px;
        height: 65px;
    }
    
    .venue-table-card .table-num {
        font-size: 1.3rem;
    }
    
    .venue-table-card .table-timer {
        font-size: 0.65rem;
        padding: 2px 6px;
    }
    
    .table-orders-badge,
    .table-vip-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .venue-table-card {
        width: 70px;
        height: 55px;
    }
    
    .venue-table-card .table-num {
        font-size: 1.1rem;
    }
    
    .table-status-indicator {
        width: 7px;
        height: 7px;
        top: 5px;
        right: 5px;
    }
    
    .venue-table-card .table-timer,
    .table-status-text {
        font-size: 0.55rem;
        padding: 1px 4px;
    }
    
    .table-orders-badge,
    .table-vip-badge {
        font-size: 0.5rem;
        padding: 2px 4px;
        top: -5px;
        left: -5px;
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.element-1 {
    top: -20px;
    right: -20px;
    animation: float1 4s ease-in-out infinite;
}

.element-2 {
    bottom: 60px;
    right: -30px;
    background: linear-gradient(135deg, var(--secondary), #4f46e5);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    animation: float2 5s ease-in-out infinite;
}

.element-3 {
    top: 40%;
    left: -25px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    animation: float3 4.5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(-5deg); }
}

@keyframes float3 {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    50% { transform: translateX(10px) rotate(5deg); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                border-color 0.3s ease, 
                box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
}

.feature-icon.blue { 
    background: rgba(59, 130, 246, 0.15); 
    color: #3b82f6; 
}
.feature-card:hover .feature-icon.blue { 
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); 
}

.feature-icon.green { 
    background: rgba(34, 197, 94, 0.15); 
    color: #22c55e; 
}
.feature-card:hover .feature-icon.green { 
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3); 
}

.feature-icon.purple { 
    background: rgba(168, 85, 247, 0.15); 
    color: #a855f7; 
}
.feature-card:hover .feature-icon.purple { 
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.3); 
}

.feature-icon.orange { 
    background: rgba(245, 158, 11, 0.15); 
    color: #f59e0b; 
}
.feature-card:hover .feature-icon.orange { 
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3); 
}

.feature-icon.red { 
    background: rgba(239, 68, 68, 0.15); 
    color: #ef4444; 
}
.feature-card:hover .feature-icon.red { 
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3); 
}
.feature-icon.teal { background: rgba(20, 184, 166, 0.15); color: #14b8a6; }
.feature-card:hover .feature-icon.teal { 
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3); 
}

.feature-icon.pink { 
    background: rgba(236, 72, 153, 0.15); 
    color: #ec4899; 
}
.feature-card:hover .feature-icon.pink { 
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3); 
}

.feature-icon.yellow { 
    background: rgba(234, 179, 8, 0.15); 
    color: #eab308; 
}
.feature-card:hover .feature-icon.yellow { 
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.3); 
}

.feature-icon.cyan { 
    background: rgba(6, 182, 212, 0.15); 
    color: #06b6d4; 
}
.feature-card:hover .feature-icon.cyan { 
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3); 
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-list i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* ========================================
   How it Works
   ======================================== */
.how-it-works {
    padding: var(--section-padding);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin-top: 35px;
    flex-shrink: 0;
}

/* ========================================
   Business Types
   ======================================== */
.business-types {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.type-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: var(--transition);
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 16px;
}

.type-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.type-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   Pricing
   ======================================== */
.pricing {
    padding: var(--section-padding);
}

/* Single Pricing Layout */
.pricing-single {
    max-width: 700px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.1) 0%, var(--bg-primary) 100%);
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(139, 92, 246, 0.2); }
    50% { box-shadow: 0 0 50px rgba(139, 92, 246, 0.4); }
}

.featured-badge {
    position: absolute;
    top: -16px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.featured-badge i {
    color: #fbbf24;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 12px;
}

.amount {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: var(--text-muted);
    font-size: 1.2rem;
    align-self: flex-end;
    margin-bottom: 12px;
}

.price-note {
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Custom Price - Breakdown (One-time + Monthly) */
.price-breakdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.price-item i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-item.onetime i {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-item.monthly i {
    background: linear-gradient(135deg, var(--primary), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.price-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.price-divider {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .price-breakdown {
        flex-direction: column;
        gap: 12px;
    }
    
    .price-item {
        width: 100%;
        padding: 14px 20px;
    }
    
    .price-divider {
        font-size: 1.4rem;
    }
}

.pricing-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
    margin-bottom: 35px;
}

.pricing-features {
    margin-bottom: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 1.05rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    width: 22px;
    color: var(--primary);
    font-size: 1.1rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.trial-text {
    text-align: center;
    margin-top: 20px;
    color: var(--success);
    font-weight: 600;
    font-size: 1rem;
}

.trial-text i {
    margin-left: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled i {
    color: var(--text-muted);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--bg-primary);
    overflow: hidden;
}

/* Testimonials Slider */
.testimonials-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.testimonials-slider {
    flex: 1;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    direction: ltr;
    gap: 24px;
    transition: transform 0.5s ease;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: var(--text-muted);
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.testimonial-card {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    flex-shrink: 0;
    transition: all 0.3s ease;
    direction: rtl;
}

.testimonial-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.15);
}

.testimonial-content {
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.stars i {
    color: #f59e0b;
}

.testimonial-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary);
}

.method-info h4 {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.method-info a {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.method-info a:hover {
    color: var(--primary);
}

.contact-form-wrapper {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-primary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-seo {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid var(--border);
}

.footer-seo p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.footer-seo strong {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .pricing-card {
        padding: 40px 30px;
    }
    
    .amount {
        font-size: 4rem;
    }
    
    .testimonial-card {
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }
    
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Testimonials Slider Mobile */
    .testimonials-slider-wrapper {
        gap: 10px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonial-card {
        min-width: 100%;
        max-width: 100%;
        padding: 24px;
    }
    
    .slider-dots {
        margin-top: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}

/* ========================================
   Demo Section
   ======================================== */
.demo-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-dark) 100%);
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.demo-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.demo-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.2);
}

.demo-tab i {
    transition: transform 0.3s ease;
}

.demo-tab:hover i {
    transform: scale(1.2);
}

.demo-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
}

.demo-container {
    position: relative;
    min-height: 500px;
}

.demo-content {
    display: none;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.demo-content.active {
    display: grid;
}

/* Browser Mockup */
.mockup-browser {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #22c55e; }

.browser-url {
    flex: 1;
    padding: 6px 12px;
    background: var(--bg-dark);
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.browser-content {
    padding: 20px;
    min-height: 350px;
}

/* Mock Stats Bar */
.mock-stats-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.mock-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 10px;
    font-size: 0.85rem;
}

.mock-stat i {
    font-size: 1rem;
}

.mock-stat.blue { color: #3b82f6; }
.mock-stat.red { color: #ef4444; }
.mock-stat.green { color: #22c55e; }

/* Mock Tables Grid */
.mock-tables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mock-table {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.mock-table.active {
    border-color: #ef4444;
    background: linear-gradient(145deg, var(--bg-secondary), rgba(239, 68, 68, 0.1));
}

.table-status-dot {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
}

.table-status-dot.free {
    background: #22c55e;
}

.table-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.table-timer {
    display: block;
    font-size: 0.9rem;
    color: #ef4444;
    font-family: monospace;
    font-weight: 600;
}

.table-rate {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.table-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 8px;
    background: #f59e0b;
    color: white;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Demo Info */
.demo-info h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.demo-info h3 i {
    color: var(--primary);
}

.demo-info ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-info li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.demo-info li i {
    color: var(--primary);
    font-size: 0.9rem;
}

/* Order Panel Mock */
.mock-order-panel {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
    max-width: 350px;
    margin: 0 auto;
}

.order-header-mock {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}

.order-time {
    color: var(--primary);
    font-family: monospace;
}

.order-items-mock {
    margin-bottom: 16px;
}

.order-item-mock {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.item-name { flex: 1; }
.item-qty { color: var(--text-muted); margin: 0 12px; }
.item-price { font-weight: 600; color: var(--primary); }

.order-total-mock {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.total-amount {
    color: var(--primary);
    font-size: 1.3rem;
}

.order-actions-mock {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.mock-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
}

.mock-btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.mock-btn.secondary {
    background: var(--bg-dark);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

/* Phone Mockup */
.mockup-phone {
    width: 280px;
    margin: 0 auto;
    background: var(--bg-primary);
    border: 3px solid var(--border);
    border-radius: 30px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: var(--bg-dark);
    border-radius: 0 0 14px 14px;
    margin: 0 auto 10px;
}

.phone-content {
    background: var(--bg-dark);
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--bg-secondary);
    font-weight: 600;
}

.phone-header i {
    color: var(--primary);
}

.waiter-orders {
    padding: 12px;
}

.waiter-order {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 10px;
    border-right: 3px solid var(--primary);
}

.waiter-order.new {
    border-right-color: #22c55e;
    animation: pulse 2s infinite;
}

.waiter-order.delivered {
    opacity: 0.6;
    border-right-color: var(--text-muted);
}

.order-table {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.order-items-list {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.order-items-list span {
    display: block;
}

.order-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.time-ago {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.deliver-btn {
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
}

/* Stats Mock */
.stats-content {
    padding: 20px !important;
}

.stats-header-mock h4 {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.stats-cards-mock {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card-mock {
    flex: 1;
    text-align: center;
    padding: 16px 10px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.stat-card-mock i {
    font-size: 1.25rem;
    margin-bottom: 8px;
    display: block;
}

.stat-card-mock.green i { color: #22c55e; }
.stat-card-mock.blue i { color: #3b82f6; }
.stat-card-mock.purple i { color: #a855f7; }

.stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stats-chart-mock {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 20px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 120px;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 8px;
    opacity: 0.6;
}

.chart-bar.active {
    opacity: 1;
}

.chart-bar span {
    font-size: 0.7rem;
    color: white;
    font-weight: 600;
}

/* Customer Card Mock */
.customer-card-mock {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 20px;
    max-width: 350px;
    margin: 0 auto;
}

.customer-header-mock {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.customer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.customer-info-mock h4 {
    margin-bottom: 4px;
}

.customer-level {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.customer-level.gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.customer-stats-mock {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.cust-stat {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: var(--bg-dark);
    border-radius: 10px;
}

.cust-stat-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.cust-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.customer-benefits-mock {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--primary);
}

.benefit-item i {
    width: 20px;
}

/* Coupons List Mock */
.coupons-list-mock {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
}

.coupon-mock {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-right: 4px solid var(--text-muted);
    opacity: 0.6;
}

.coupon-mock.active {
    border-right-color: var(--primary);
    opacity: 1;
}

.coupon-icon {
    width: 45px;
    height: 45px;
    background: var(--bg-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.coupon-details {
    flex: 1;
}

.coupon-details h4 {
    font-family: monospace;
    color: var(--primary);
    margin-bottom: 4px;
}

.coupon-details p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.coupon-badge {
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary);
}

.coupon-badge.used {
    background: rgba(100, 116, 139, 0.2);
    color: var(--text-muted);
}

/* Happy Hours Mock */
.happy-hours-mock {
    padding: 20px;
}

.happy-header-mock {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 16px;
    margin-bottom: 20px;
    color: white;
}

.happy-header-mock i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
}

.happy-header-mock h4 {
    margin-bottom: 4px;
}

.happy-time {
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: 700;
}

.happy-deals-mock {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.happy-deal {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.deal-icon {
    font-size: 1.5rem;
}

.deal-text {
    flex: 1;
    font-size: 0.9rem;
}

.deal-discount {
    padding: 4px 12px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.happy-days-mock {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.happy-days-mock .day {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.happy-days-mock .day.active {
    background: var(--primary);
    color: white;
}

/* Transfer Demo Styles */
.transfer-demo-content {
    padding: 20px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-dark));
}

.transfer-header-mock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.transfer-header-mock i {
    font-size: 1.3rem;
}

.transfer-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.transfer-table {
    text-align: center;
}

.transfer-table-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.transfer-table-box {
    width: 120px;
    height: 120px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.transfer-table-box.active {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.3), rgba(239, 68, 68, 0.15));
    border: 3px solid var(--danger);
    box-shadow: 0 0 25px rgba(239, 68, 68, 0.4), inset 0 0 20px rgba(239, 68, 68, 0.1);
}

.transfer-table-box.active .table-num {
    color: var(--danger);
}

.transfer-table-box .table-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.transfer-table-box .table-timer {
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--danger);
    font-weight: 600;
}

.transfer-table-box .table-items {
    font-size: 0.75rem;
    color: var(--primary);
}

.transfer-table-box .table-total {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--success);
}

.transfer-table-box .table-status-text {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 600;
}

.transfer-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 0 10px;
}

.transfer-arrow .arrow-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--danger), var(--primary), var(--success));
    border-radius: 2px;
}

.transfer-arrow i {
    font-size: 1.5rem;
    color: var(--primary);
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.transfer-items-moving {
    position: absolute;
    font-size: 1.2rem;
    color: var(--primary);
    animation: moveItems 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(-5px); opacity: 0.7; }
}

@keyframes moveItems {
    0% { transform: translateX(30px); opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { transform: translateX(-30px); opacity: 0; }
}

.transfer-options-mock {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.transfer-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: default;
}

.transfer-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.transfer-btn-mock {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), #7c3aed);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.transfer-btn-mock:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.demo-cta {
    text-align: center;
    margin-top: 50px;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Demo Responsive */
@media (max-width: 1024px) {
    .demo-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .demo-info {
        order: -1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Mobile Demo Accordion */
    .demo-container.mobile-accordion {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .demo-container.mobile-accordion .demo-content {
        display: none;
        margin-bottom: 10px;
    }
    
    .demo-container.mobile-accordion .demo-content.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .mobile-accordion-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 20px;
        background: var(--bg-secondary);
        border: 1px solid var(--border);
        border-radius: 12px;
        color: var(--text-primary);
        font-family: inherit;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 10px;
    }
    
    .mobile-accordion-header span {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .mobile-accordion-header span i {
        color: var(--primary);
    }
    
    .mobile-accordion-header .chevron {
        transition: transform 0.3s ease;
        color: var(--text-muted);
    }
    
    .mobile-accordion-header.active {
        background: linear-gradient(135deg, var(--primary), #7c3aed);
        border-color: var(--primary);
        color: white;
        border-radius: 12px 12px 0 0;
        margin-bottom: 0;
    }
    
    .mobile-accordion-header.active span i {
        color: white;
    }
    
    .mobile-accordion-header.active .chevron {
        transform: rotate(180deg);
        color: white;
    }
    
    .mobile-accordion-header.active + .demo-content {
        border: 1px solid var(--primary);
        border-top: none;
        border-radius: 0 0 12px 12px;
        padding: 20px 15px;
    }
    
    .demo-container.mobile-accordion .demo-content .demo-mockup,
    .demo-container.mobile-accordion .demo-content .demo-info {
        padding: 15px;
    }
    
    .mock-tables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-cards-mock {
        flex-direction: column;
    }
    
    .transfer-visual {
        flex-direction: column;
        gap: 20px;
    }
    
    .transfer-arrow {
        transform: none;
        flex-direction: row;
        padding: 10px 0;
    }
    
    .transfer-arrow .arrow-line {
        width: 3px;
        height: 40px;
        background: linear-gradient(180deg, var(--danger), var(--primary), var(--success));
    }
    
    .transfer-arrow i.fa-arrow-left {
        transform: rotate(-90deg);
    }
    
    .transfer-arrow .transfer-items-moving {
        animation: moveItemsMobile 2s ease-in-out infinite;
    }
    
    @keyframes moveItemsMobile {
        0% { transform: translateY(-20px); opacity: 0; }
        20% { opacity: 1; }
        80% { opacity: 1; }
        100% { transform: translateY(20px); opacity: 0; }
    }
    
    @keyframes arrowPulseMobile {
        0%, 100% { transform: rotate(-90deg) translateX(0); opacity: 1; }
        50% { transform: rotate(-90deg) translateX(-5px); opacity: 0.7; }
    }
    
    .transfer-arrow i.fa-arrow-left {
        animation: arrowPulseMobile 1.5s ease-in-out infinite;
    }
    
    .transfer-table-box {
        width: 100px;
        height: 100px;
    }
    
    .transfer-table-box .table-num {
        font-size: 1.5rem;
    }
}

/* ========================================
   Gallery Section - Carousel
   ======================================== */
.gallery-section {
    padding: var(--section-padding);
    background: var(--bg-dark);
}

.gallery-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.gallery-carousel {
    flex: 1;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    direction: ltr;
    gap: 24px;
    transition: transform 0.5s ease;
}

.gallery-card {
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    flex-shrink: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    direction: rtl;
}

.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}

.gallery-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.gallery-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-image img {
    transform: scale(1.1);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-overlay i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.gallery-card:hover .gallery-card-overlay i {
    transform: scale(1);
}

.gallery-card-info {
    padding: 20px;
}

.gallery-card-info h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.gallery-card-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Gallery Slider Buttons */
.gallery-slider-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.gallery-slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Gallery Slider Dots */
.gallery-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.gallery-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-slider-dot:hover {
    background: var(--text-muted);
}

.gallery-slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Gallery Carousel Responsive */
@media (max-width: 1024px) {
    .gallery-card {
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .gallery-carousel-wrapper {
        gap: 10px;
    }
    
    .gallery-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .gallery-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .gallery-card-info {
        padding: 16px;
    }
    
    .gallery-card-info h4 {
        font-size: 1rem;
    }
    
    .gallery-slider-dots {
        margin-top: 20px;
    }
    
    .gallery-slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Legacy Gallery Grid Support (keeping for reference) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.3s ease,
                border-color 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--primary);
    z-index: 10;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large img {
    min-height: 400px;
}

.screen-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.screen-dots {
    display: flex;
    gap: 5px;
}

.screen-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.screen-dots span:nth-child(1) { background: #ef4444; }
.screen-dots span:nth-child(2) { background: #f59e0b; }
.screen-dots span:nth-child(3) { background: #22c55e; }

.screen-title {
    flex: 1;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.screen-content {
    padding: 16px;
    min-height: 200px;
    background: var(--bg-dark);
}

/* Dashboard Screen */
.dashboard-screen .dash-stats {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.dash-stat-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.7rem;
}

.dash-stat-card i {
    font-size: 1rem;
}

.dash-stat-card.blue { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.dash-stat-card.green { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.dash-stat-card.purple { background: rgba(168, 85, 247, 0.2); color: #a855f7; }

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-weight: 700;
    font-size: 0.85rem;
    color: white;
}

.stat-txt {
    font-size: 0.6rem;
    opacity: 0.8;
}

.dash-tables {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.dash-table {
    aspect-ratio: 1;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-muted);
}

.dash-table.active {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

/* Map Screen */
.map-screen {
    padding: 0 !important;
    min-height: 280px;
}

.gallery-item.large .map-screen {
    min-height: 400px;
}

.map-bg {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
    background: 
        radial-gradient(circle at 30% 40%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
        var(--bg-dark);
}

.map-tbl {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tbl-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(145deg, #22c55e, #16a34a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.tbl-circle.active {
    background: linear-gradient(145deg, #ef4444, #dc2626);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
    animation: pulseTable 2s ease-in-out infinite;
}

@keyframes pulseTable {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.tbl-time {
    font-size: 0.65rem;
    padding: 2px 8px;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 8px;
    color: white;
    font-family: monospace;
}

.map-decor {
    position: absolute;
    padding: 6px 10px;
    background: var(--bg-secondary);
    border-radius: 6px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.map-decor.bar-icon { top: 10px; left: 10px; }
.map-decor.door-icon { bottom: 10px; left: 50%; transform: translateX(-50%); }

.map-decor i {
    color: var(--primary);
}

/* Order Screen */
.order-screen {
    display: flex;
    flex-direction: column;
}

.order-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 10px;
    font-weight: 600;
}

.order-timer {
    color: var(--primary);
    font-family: monospace;
}

.order-items {
    flex: 1;
}

.order-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}

.order-row span:first-child { flex: 1; }
.order-row span:nth-child(2) { color: var(--text-muted); width: 40px; text-align: center; }
.order-row span:last-child { color: var(--primary); font-weight: 600; width: 50px; text-align: left; }

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    margin-top: 8px;
    border-top: 2px solid var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.order-total span:last-child {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Products Screen */
.products-screen {
    display: flex;
    flex-direction: column;
}

.products-cats {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.products-cats .cat {
    padding: 6px 12px;
    background: var(--bg-secondary);
    border-radius: 15px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.products-cats .cat.active {
    background: var(--primary);
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.product-item {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

.prod-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.product-item span {
    display: block;
    font-size: 0.75rem;
}

.prod-price {
    color: var(--primary);
    font-weight: 600;
    margin-top: 4px;
}

/* Stats Screen */
.stats-screen {
    display: flex;
    flex-direction: column;
}

.stats-period {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.stats-period .period {
    padding: 6px 14px;
    background: var(--bg-secondary);
    border-radius: 15px;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.stats-period .period.active {
    background: var(--primary);
    color: white;
}

.stats-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100px;
    padding: 10px 0;
    gap: 8px;
}

.stats-chart .chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), var(--primary-dark));
    border-radius: 4px 4px 0 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.stats-chart .chart-bar.active {
    opacity: 1;
}

.stats-summary {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.sum-label { color: var(--text-muted); }
.sum-value { color: var(--primary); font-weight: 700; }

/* Waiter Screen (Phone) */
.waiter-screen {
    background: var(--bg-dark);
    border-radius: 20px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.waiter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: var(--bg-secondary);
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    font-size: 0.85rem;
}

.waiter-header i {
    color: var(--primary);
}

.waiter-list {
    padding: 10px;
    flex: 1;
}

.waiter-item {
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 8px;
    border-right: 3px solid var(--primary);
}

.waiter-item.new {
    border-right-color: #22c55e;
    animation: newOrderPulse 2s ease-in-out infinite;
}

@keyframes newOrderPulse {
    0%, 100% { background: var(--bg-secondary); }
    50% { background: rgba(34, 197, 94, 0.1); }
}

.waiter-item.done {
    opacity: 0.5;
    border-right-color: var(--text-muted);
}

.w-table {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
    font-size: 0.85rem;
}

.w-items {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.w-time {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 40px;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/* Lightbox Navigation Buttons */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.lightbox-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    right: 30px;
}

.lightbox-next {
    left: 30px;
}

/* Lightbox Counter */
.lightbox-counter {
    position: absolute;
    top: 25px;
    right: 50%;
    transform: translateX(50%);
    background: rgba(30, 41, 59, 0.8);
    padding: 8px 20px;
    border-radius: 20px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        right: 15px;
    }
    
    .lightbox-next {
        left: 15px;
    }
    
    .lightbox-counter {
        top: 15px;
        font-size: 0.85rem;
        padding: 6px 15px;
    }
}

.lightbox-content {
    max-width: 90vw;
    max-height: 80vh;
    animation: lightboxZoom 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

@keyframes lightboxZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-caption {
    margin-top: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .gallery-item.phone {
        max-width: 100%;
    }
    
    .lightbox-content .gallery-mockup {
        transform: scale(1);
    }
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
}

.back-to-top:active {
    transform: translateY(-2px);
}

/* ========================================
   Accessibility Widget
   ======================================== */
.accessibility-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10001;
}

/* Page Wrapper for Accessibility Filters */
.page-wrapper {
    min-height: 100vh;
}

.accessibility-toggle {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.accessibility-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

.accessibility-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.accessibility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
}

.accessibility-header h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-size: 1rem;
    color: var(--primary);
}

.accessibility-close {
    width: 30px;
    height: 30px;
    background: var(--bg-secondary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.accessibility-close:hover {
    background: #ef4444;
    color: white;
}

.accessibility-options {
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.accessibility-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.accessibility-btn i {
    font-size: 1.2rem;
    color: var(--primary);
}

.accessibility-btn:hover {
    background: var(--bg-dark);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.accessibility-btn.active {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--primary);
}

.accessibility-btn.reset {
    grid-column: span 2;
    flex-direction: row;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
}

.accessibility-btn.reset i {
    color: #ef4444;
}

.accessibility-btn.reset:hover {
    background: #ef4444;
    color: white;
}

.accessibility-btn.reset:hover i {
    color: white;
}

/* Accessibility States */
body.grayscale .page-wrapper {
    filter: grayscale(100%);
}

body.high-contrast {
    --bg-dark: #000;
    --bg-primary: #111;
    --bg-secondary: #222;
    --text-primary: #fff;
    --text-secondary: #eee;
    --text-muted: #ccc;
    --border: #fff;
    --primary: #00ff00;
    --primary-dark: #00cc00;
}

body.underline-links a {
    text-decoration: underline !important;
}

body.readable-font,
body.readable-font * {
    font-family: Arial, sans-serif !important;
    letter-spacing: 0.5px;
}

/* Skip to content link for keyboard users */
.skip-link {
    position: absolute;
    top: -100px;
    right: 0;
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Accessibility Widget Responsive */
@media (max-width: 768px) {
    .accessibility-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .accessibility-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .accessibility-panel {
        right: -10px;
        width: 260px;
    }
}

/* ========================================
   Video Carousel Section
   ======================================== */
.videos-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-dark) 100%);
}

.video-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.video-carousel {
    flex: 1;
    overflow: hidden;
}

.video-track {
    display: flex;
    direction: ltr;
    gap: 24px;
    transition: transform 0.5s ease;
}

.video-card {
    min-width: calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
    flex-shrink: 0;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    direction: rtl;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.2);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-dark));
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .video-thumbnail video {
    transform: scale(1.05);
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(99, 102, 241, 0.1));
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.video-placeholder span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.video-card:hover .video-placeholder i {
    transform: scale(1.2);
    color: var(--primary-light);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-overlay i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.5);
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.video-thumbnail:hover .video-overlay i {
    transform: scale(1);
}

.video-info {
    padding: 20px;
}

.video-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.video-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Video Slider Buttons */
.video-slider-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.video-slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Video Slider Dots */
.video-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.video-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-slider-dot:hover {
    background: var(--text-muted);
}

.video-slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Video Modal */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 40px;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-close:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

.video-modal-content {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: var(--bg-dark);
    border-radius: 16px;
    overflow: hidden;
    animation: videoModalZoom 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.video-modal-content iframe,
.video-modal-content video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 16px;
}

.video-modal-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-dark));
}

.video-modal-placeholder i {
    font-size: 5rem;
    color: var(--primary);
}

.video-modal-placeholder span {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

@keyframes videoModalZoom {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Video Carousel Responsive */
@media (max-width: 1024px) {
    .video-card {
        min-width: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .video-carousel-wrapper {
        gap: 10px;
    }
    
    .video-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .video-card {
        min-width: 100%;
        max-width: 100%;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
    
    .video-overlay i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .video-info {
        padding: 16px;
    }
    
    .video-info h4 {
        font-size: 1rem;
    }
    
    .video-slider-dots {
        margin-top: 20px;
    }
    
    .video-slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .video-modal {
        padding: 20px;
    }
    
    .video-modal-close {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* ===== Stats Counter Section ===== */
.stats-section {
    padding: 60px 0;
    background: #1e293b;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: white;
}

.stat-item:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: inline-block;
    line-height: 1;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    margin-right: -5px;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 10px;
    font-weight: 500;
}

/* Stats Responsive */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-suffix {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* ===== Comparison Table Section ===== */
.comparison-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    background: var(--bg-secondary);
    padding: 30px;
    border: 1px solid var(--border);
}

.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

/* Header row */
.comparison-table thead tr {
    background: transparent;
}

.comparison-table th {
    padding: 20px 15px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border);
}

.comparison-table th:first-child {
    text-align: right;
    width: 40%;
    color: var(--text-primary);
    font-size: 1rem;
}

/* Highlight column - Baro */
.comparison-table th.highlight-col {
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    color: white;
    font-size: 1.1rem;
    border-radius: 16px 16px 0 0;
    position: relative;
    border-bottom: none;
    box-shadow: 0 -5px 30px rgba(99, 102, 241, 0.3);
}

.comparison-table th.highlight-col::before {
    content: '✓ הבחירה הנכונה';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b981;
    color: white;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

/* Body rows */
.comparison-table tbody tr {
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.03);
}

.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: right;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

/* Highlight column cells */
.comparison-table td.highlight-col {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0.04) 100%);
    border-left: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
    position: relative;
}

.comparison-table tbody tr:last-child td.highlight-col {
    border-radius: 0 0 16px 16px;
    border-bottom: 2px solid var(--primary);
}

/* Check icon */
.comparison-table .check {
    color: #10b981;
    font-size: 1.25rem;
}

/* Highlight column check - bigger and with background */
.comparison-table td.highlight-col .check {
    font-size: 1.4rem;
    background: rgba(16, 185, 129, 0.15);
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Cross icon */
.comparison-table .cross {
    color: #94a3b8;
    font-size: 1rem;
    opacity: 0.7;
}

/* Partial/limited text */
.comparison-table .partial {
    color: #f59e0b;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(245, 158, 11, 0.1);
    padding: 4px 12px;
    border-radius: 12px;
}

/* Comparison footer */
.comparison-footer {
    text-align: center;
    margin-top: 40px;
}

.comparison-footer p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Comparison Responsive */
@media (max-width: 992px) {
    .comparison-table-wrapper {
        padding: 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 12px;
    }
}

@media (max-width: 768px) {
    .comparison-section {
        padding: 60px 0;
    }
    
    .comparison-table-wrapper {
        border-radius: 16px;
        padding: 15px;
        margin: 0 -10px;
    }
    
    .comparison-table {
        min-width: 580px;
    }
    
    .comparison-table th {
        padding: 15px 10px;
        font-size: 0.8rem;
    }
    
    .comparison-table th.highlight-col {
        font-size: 0.9rem;
        border-radius: 12px 12px 0 0;
    }
    
    .comparison-table th.highlight-col::before {
        font-size: 0.6rem;
        padding: 4px 10px;
        top: -10px;
    }
    
    .comparison-table td {
        padding: 14px 10px;
        font-size: 0.85rem;
    }
    
    .comparison-table td.highlight-col .check {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
    
    .comparison-table tbody tr:last-child td.highlight-col {
        border-radius: 0 0 12px 12px;
    }
}
