 :root {
            /* Primary Colors */
            --primary-color: #7c3aed;
            --primary-dark: #6d28d9;
            --primary-light: #ede9fe;
            --secondary-color: #f59e0b;
            --secondary-dark: #d97706;
            --accent-color: #10b981;
            --accent-light: #d1fae5;
            
            /* Platform Colors */
            --venue-color: #3b82f6;
            --venue-light: #dbeafe;
            --vendor-color: #8b5cf6;
            --vendor-light: #f3e8ff;
            --staff-color: #ec4899;
            --staff-light: #fce7f3;
            --security-color: #ef4444;
            --security-light: #fee2e2;
            --event-color: #ec4899;
            --event-light: #fce7f3;
            --travel-color: #3b82f6;
            --travel-light: #dbeafe;
            --beauty-color: #d946ef;
            --beauty-light: #fae8ff;
            --maintenance-color: #0ea5e9;
            --maintenance-light: #e0f2fe;
            --wellness-color: #10b981;
            --wellness-light: #d1fae5;
            --wedding-color: #d946ef;
            --wedding-light: #fae8ff;
            --corporate-color: #0ea5e9;
            --corporate-light: #e0f2fe;
            --pos-color: #22c55e;
            --pos-light: #dcfce7;
            --inventory-color: #f97316;
            --inventory-light: #ffedd5;
            --supplier-color: #14b8a6;
            --supplier-light: #ccfbf1;
            --finance-color: #8b5cf6;
            --finance-light: #f3e8ff;
            
            /* Luxury Colors */
            --luxury-gold: #d4af37;
            --luxury-dark: #1a1a2e;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --text-white: #ffffff;
            --background-white: #ffffff;
            --background-light: #f9fafb;
            --background-dark: #1f2937;
            --border-color: #e5e7eb;
            
            /* Enhanced Gradients */
            --gradient-primary: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
            --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            --gradient-accent: linear-gradient(135deg, #10b981 0%, #059669 100%);
            --gradient-venue: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            --gradient-vendor: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            --gradient-staff: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
            --gradient-security: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            --gradient-event: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
            --gradient-travel: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            --gradient-beauty: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
            --gradient-maintenance: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            --gradient-wellness: linear-gradient(135deg, #10b981 0%, #059669 100%);
            --gradient-wedding: linear-gradient(135deg, #d946ef 0%, #c026d3 100%);
            --gradient-corporate: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
            --gradient-pos: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            --gradient-inventory: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            --gradient-supplier: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
            --gradient-finance: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            --gradient-luxury: linear-gradient(135deg, #d4af37 0%, #f7ef8a 100%);
            --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            --gradient-hero: linear-gradient(135deg, #1a1a2e 0%, #2d1b69 50%, #16213e 100%);
            --gradient-rainbow: linear-gradient(135deg, #7c3aed, #f59e0b, #10b981, #ec4899, #8b5cf6);
            --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #f5576c 75%, #4facfe 100%);
            
            /* Enhanced Shadows */
            --shadow-light: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-large: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --shadow-extra: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            --shadow-luxury: 0 10px 30px rgba(212, 175, 55, 0.3);
            --shadow-floating: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
            --shadow-neon: 0 0 20px rgba(124, 58, 237, 0.5), 0 0 40px rgba(124, 58, 237, 0.3);
            
            /* Enhanced Radius */
            --radius: 12px;
            --radius-lg: 20px;
            --radius-xl: 30px;
            --radius-2xl: 40px;
            --radius-full: 9999px;
            
            /* Fonts */
            --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            --font-display: 'Playfair Display', Georgia, serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-primary);
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--background-white);
            overflow-x: hidden;
        }

        /* Enhanced Utility Classes */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: var(--radius);
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            font-size: 15px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s;
            z-index: -1;
        }

        .btn:hover::before {
            left: 100%;
        }

        /* Button Variants */
        .btn-primary { background: var(--gradient-primary); color: white; box-shadow: var(--shadow-medium); }
        .btn-venue { background: var(--gradient-venue); color: white; box-shadow: var(--shadow-medium); }
        .btn-vendor { background: var(--gradient-vendor); color: white; box-shadow: var(--shadow-medium); }
        .btn-staff { background: var(--gradient-staff); color: white; box-shadow: var(--shadow-medium); }
        .btn-security { background: var(--gradient-security); color: white; box-shadow: var(--shadow-medium); }
        .btn-event { background: var(--gradient-event); color: white; box-shadow: var(--shadow-medium); }
        .btn-travel { background: var(--gradient-travel); color: white; box-shadow: var(--shadow-medium); }
        .btn-beauty { background: var(--gradient-beauty); color: white; box-shadow: var(--shadow-medium); }
        .btn-maintenance { background: var(--gradient-maintenance); color: white; box-shadow: var(--shadow-medium); }
        .btn-wellness { background: var(--gradient-wellness); color: white; box-shadow: var(--shadow-medium); }
        .btn-wedding { background: var(--gradient-wedding); color: white; box-shadow: var(--shadow-medium); }
        .btn-corporate { background: var(--gradient-corporate); color: white; box-shadow: var(--shadow-medium); }
        .btn-pos { background: var(--gradient-pos); color: white; box-shadow: var(--shadow-medium); }
        .btn-inventory { background: var(--gradient-inventory); color: white; box-shadow: var(--shadow-medium); }
        .btn-supplier { background: var(--gradient-supplier); color: white; box-shadow: var(--shadow-medium); }
        .btn-finance { background: var(--gradient-finance); color: white; box-shadow: var(--shadow-medium); }

        .btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--shadow-extra);
        }

        .btn-luxury {
            background: var(--gradient-luxury);
            color: var(--luxury-dark);
            box-shadow: var(--shadow-luxury);
            font-weight: 700;
        }

        .btn-luxury:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px) scale(1.05);
        }

        .btn-large {
            padding: 18px 36px;
            font-size: 16px;
            font-weight: 600;
        }

        .btn-extra-large {
            padding: 20px 40px;
            font-size: 18px;
            font-weight: 700;
        }

        /* ===== PREMIUM NAVIGATION - FULLY ENHANCED ===== */
        .landing-navbar {
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 2000;
            box-shadow: 0 2px 20px rgba(124,58,237,0.08);
            transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
            border-bottom: 1.5px solid rgba(124,58,237,0.07);
        }
        .landing-navbar.scrolled {
            background: rgba(255,255,255,0.99);
            box-shadow: 0 4px 30px rgba(124,58,237,0.13);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 32px;
            position: relative;
        }

        /* Logo */
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 26px;
            font-weight: 900;
            color: var(--primary-color);
            text-decoration: none;
            white-space: nowrap;
            font-family: var(--font-display);
            transition: transform 0.3s ease;
        }
        .nav-logo:hover { transform: scale(1.04); }
        .nav-logo i {
            font-size: 28px;
            background: var(--gradient-rainbow);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: crownSpin 6s ease-in-out infinite;
        }
        @keyframes crownSpin {
            0%,100% { transform: rotate(0deg) scale(1); }
            25% { transform: rotate(-8deg) scale(1.1); }
            75% { transform: rotate(8deg) scale(1.1); }
        }

        /* Desktop nav links */
        .nav-links {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 10px;
            transition: all 0.25s ease;
            position: relative;
            white-space: nowrap;
        }
        .nav-link .nav-icon {
            font-size: 13px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-color);
            background: var(--primary-light);
        }
        .nav-link:hover .nav-icon {
            opacity: 1;
            transform: scale(1.2) rotate(-5deg);
        }
        .nav-link .chevron-icon {
            font-size: 10px;
            margin-left: 2px;
            transition: transform 0.3s ease;
            opacity: 0.6;
        }
        .nav-dropdown:hover .nav-link .chevron-icon { transform: rotate(180deg); opacity:1; }

        /* Dropdown */
        .nav-dropdown { position: relative; }
        .dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            background: white;
            min-width: 230px;
            border-radius: 14px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(124,58,237,0.08);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px) scale(0.97);
            transform-origin: top left;
            transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
            z-index: 200;
            overflow: hidden;
        }
        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 18px;
            color: var(--text-dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
            border-bottom: 1px solid rgba(0,0,0,0.04);
        }
        .dropdown-item:last-child { border-bottom: none; }
        .dropdown-item i {
            width: 20px;
            text-align: center;
            font-size: 13px;
            color: var(--primary-color);
            opacity: 0.7;
            transition: all 0.2s ease;
        }
        .dropdown-item:hover {
            background: var(--primary-light);
            color: var(--primary-color);
            padding-left: 22px;
        }
        .dropdown-item:hover i { opacity: 1; transform: scale(1.15); }

        /* Auth buttons */
        .nav-auth-buttons {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        /* Hamburger button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            border-radius: 10px;
            transition: background 0.2s ease;
            width: 42px;
            height: 42px;
            z-index: 2100;
        }
        .mobile-menu-btn:hover { background: var(--primary-light); }
        .hamburger-line {
            display: block;
            width: 22px;
            height: 2.5px;
            background: var(--text-dark);
            border-radius: 4px;
            transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
            transform-origin: center;
        }
        .mobile-menu-btn.open .hamburger-line:nth-child(1) {
            transform: translateY(7.5px) rotate(45deg);
            background: var(--primary-color);
        }
        .mobile-menu-btn.open .hamburger-line:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .mobile-menu-btn.open .hamburger-line:nth-child(3) {
            transform: translateY(-7.5px) rotate(-45deg);
            background: var(--primary-color);
        }

        /* nav-links.active handled by media queries - desktop only now */

        /* Mobile drawer overlay */
        .mobile-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.45);
            z-index: 1900;
            backdrop-filter: blur(4px);
            animation: fadeIn 0.25s ease;
        }
        .mobile-overlay.active { display: block; }
        @keyframes fadeIn { from{opacity:0} to{opacity:1} }

        /* Lock body scroll when drawer open */
        body.drawer-open {
            overflow: hidden !important;
            position: fixed !important;
            width: 100% !important;
        }

        /* Mobile drawer */
        .mobile-drawer {
            position: fixed;
            top: 0;
            left: 0;
            width: min(320px, 88vw);
            height: 100%;
            background: white;
            z-index: 2000;
            transform: translateX(-100%);
            transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
            display: flex;
            flex-direction: column;
            box-shadow: 8px 0 40px rgba(0,0,0,0.18);
            overflow: visible;
        }
        /* drawer-body scrolls, footer stays at bottom */
        .mobile-drawer.active { transform: translateX(0); }

        .drawer-header {
            background: var(--gradient-hero);
            padding: 12px 14px 12px 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
            min-height: 56px;
        }
        .drawer-logo {
            display: flex;
            align-items: center;
            gap: 9px;
            font-size: 20px;
            font-weight: 700;
            color: white;
            font-family: var(--font-display);
            text-decoration: none;
            flex: 1;
            white-space: nowrap;
        }
        .drawer-logo i {
            font-size: 22px;
            color: #C9974A;
            flex-shrink: 0;
        }
        .drawer-close {
            margin-left: auto;
            background: rgba(255,255,255,0.15);
            border: none;
            color: white;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.2s;
            flex-shrink: 0;
        }
        .drawer-close:hover { background: rgba(255,255,255,0.25); }

        .drawer-body {
            flex: 1 1 auto;
            overflow-y: auto;
            overflow-x: hidden;
            min-height: 0;
            padding: 4px 0 4px;
        }
        .drawer-top-btns {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding: 14px 18px 10px;
        }
        .drawer-top-btns .btn {
            width: 100%;
            justify-content: center;
            padding: 13px 20px;
            font-size: 14px;
            border-radius: 10px;
        }
        .drawer-body::-webkit-scrollbar { width: 3px; }
        .drawer-body::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 3px; }

        /* Drawer nav items */
        .drawer-nav-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 9px 16px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s ease;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }
        .drawer-nav-item:hover, .drawer-nav-item.active-item {
            background: var(--primary-light);
            color: var(--primary-color);
        }
        .drawer-nav-item .ditem-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            color: var(--primary-color);
            flex-shrink: 0;
            transition: all 0.25s ease;
        }
        .drawer-nav-item:hover .ditem-icon,
        .drawer-nav-item.active-item .ditem-icon {
            background: var(--primary-color);
            color: white;
            transform: scale(1.08);
        }
        .drawer-nav-item .ditem-arrow {
            margin-left: auto;
            font-size: 11px;
            opacity: 0.5;
            transition: transform 0.3s ease, opacity 0.2s;
        }
        .drawer-nav-item.open .ditem-arrow {
            transform: rotate(90deg);
            opacity: 1;
            color: var(--primary-color);
        }

        /* Accordion sub-menu */
        .drawer-submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1);
            background: #f9f9ff;
        }
        .drawer-submenu.open { max-height: 600px; }
        .drawer-subitem {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 22px 10px 36px;
            color: var(--text-light);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }
        .drawer-subitem i {
            width: 18px;
            text-align: center;
            font-size: 12px;
            color: var(--primary-color);
            opacity: 0.6;
        }
        .drawer-subitem:hover {
            color: var(--primary-color);
            background: var(--primary-light);
            border-left-color: var(--primary-color);
            padding-left: 40px;
        }
        .drawer-subitem:hover i { opacity: 1; }

        .drawer-divider {
            height: 1px;
            background: var(--border-color);
            margin: 4px 16px;
        }

        /* Drawer bottom auth - ALWAYS VISIBLE */
        .drawer-footer {
            flex-shrink: 0;
            padding: 14px 18px 20px;
            border-top: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            gap: 10px;
            background: white;
            box-shadow: 0 -6px 24px rgba(0,0,0,0.10);
        }
        .drawer-footer .btn {
            width: 100%;
            justify-content: center;
            border-radius: 10px !important;
            font-size: 14px !important;
            padding: 13px 20px !important;
        }

        /* Entry animations for drawer items */
        .mobile-drawer.active .drawer-nav-item {
            animation: slideRight 0.3s ease both;
        }
        @keyframes slideRight {
            from { opacity:0; transform:translateX(-18px); }
            to   { opacity:1; transform:translateX(0); }
        }
        .mobile-drawer.active .drawer-nav-item:nth-child(1)  { animation-delay: 0.05s; }
        .mobile-drawer.active .drawer-nav-item:nth-child(2)  { animation-delay: 0.10s; }
        .mobile-drawer.active .drawer-nav-item:nth-child(3)  { animation-delay: 0.15s; }
        .mobile-drawer.active .drawer-nav-item:nth-child(4)  { animation-delay: 0.20s; }
        .mobile-drawer.active .drawer-nav-item:nth-child(5)  { animation-delay: 0.25s; }
        .mobile-drawer.active .drawer-nav-item:nth-child(6)  { animation-delay: 0.30s; }
        .mobile-drawer.active .drawer-nav-item:nth-child(7)  { animation-delay: 0.35s; }

        /* Mega Hero Section - Enhanced */
        .hero {
            background: var(--gradient-hero);
            color: white;
            padding: 200px 0 150px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 60% 60%, rgba(245, 158, 11, 0.15) 0%, transparent 50%);
            animation: gradientShift 20s ease infinite;
        }

        @keyframes gradientShift {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero-container {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: 4.5rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #fff 0%, var(--luxury-gold) 50%, #fff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% auto;
            animation: shimmer 3s linear infinite;
        }

        @keyframes shimmer {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }

        .hero-subtitle {
            font-size: 1.5rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin: 60px 0;
            padding: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 10px;
            background: var(--gradient-luxury);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-family: var(--font-display);
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.8;
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        /* Enhanced Floating Elements */
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            padding: 20px;
            box-shadow: var(--shadow-floating);
            animation: float 6s ease-in-out infinite;
            text-align: center;
            z-index: 1;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .float-1 { top: 20%; left: 5%; width: 180px; animation-delay: 0s; }
        .float-2 { top: 40%; right: 8%; width: 200px; animation-delay: 2s; }
        .float-3 { bottom: 30%; left: 10%; width: 160px; animation-delay: 4s; }
        .float-4 { bottom: 20%; right: 12%; width: 180px; animation-delay: 1s; }
        .float-5 { top: 60%; left: 15%; width: 170px; animation-delay: 3s; }
        .float-6 { top: 25%; right: 15%; width: 190px; animation-delay: 5s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Enhanced Section Styles */
        .section {
            padding: 120px 0;
            position: relative;
        }

        .section-light {
            background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
        }

        .section-dark {
            background: var(--gradient-dark);
            color: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .section-tag {
            display: inline-block;
            padding: 8px 20px;
            background: var(--gradient-primary);
            color: white;
            border-radius: var(--radius-full);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: var(--shadow-medium);
        }

        .section-title {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .section-dark .section-title::after {
            background: var(--gradient-luxury);
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.7;
        }

        .section-dark .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        /* Enhanced Complete Ecosystem Platforms */
        .ecosystem-platforms {
            position: relative;
            overflow: hidden;
        }

        .ecosystem-platforms::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 500px;
            height: 500px;
            background: var(--gradient-premium);
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.15;
            transform: translate(50%, -50%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: translate(50%, -50%) rotate(0deg); }
            100% { transform: translate(50%, -50%) rotate(360deg); }
        }

        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .platform-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 35px;
            box-shadow: var(--shadow-large);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 2px solid transparent;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .platform-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .platform-card:hover::before {
            opacity: 1;
        }

        .platform-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-floating);
        }

        .platform-card.venue {
            border-color: var(--venue-color);
        }

        .platform-card.vendor {
            border-color: var(--vendor-color);
        }

        .platform-card.staff {
            border-color: var(--staff-color);
        }

        .platform-card.event {
            border-color: var(--event-color);
        }

        .platform-card.pos {
            border-color: var(--pos-color);
        }

        .platform-card.inventory {
            border-color: var(--inventory-color);
        }

        .platform-card.supplier {
            border-color: var(--supplier-color);
        }

        .platform-card.security {
            border-color: var(--security-color);
        }

        .platform-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .platform-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            flex-shrink: 0;
            transition: transform 0.4s ease;
        }

        .platform-card:hover .platform-icon {
            transform: rotate(15deg) scale(1.1);
        }

        .platform-venue .platform-icon {
            background: var(--gradient-venue);
        }

        .platform-vendor .platform-icon {
            background: var(--gradient-vendor);
        }

        .platform-staff .platform-icon {
            background: var(--gradient-staff);
        }

        .platform-event .platform-icon {
            background: var(--gradient-event);
        }

        .platform-pos .platform-icon {
            background: var(--gradient-pos);
        }

        .platform-inventory .platform-icon {
            background: var(--gradient-inventory);
        }

        .platform-supplier .platform-icon {
            background: var(--gradient-supplier);
        }

        .platform-security .platform-icon {
            background: var(--gradient-security);
        }

        .platform-content {
            flex: 1;
        }

        .platform-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
            line-height: 1.3;
        }

        .platform-features {
            list-style: none;
            margin: 20px 0;
        }

        .platform-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: var(--text-light);
            padding: 8px 10px;
            border-radius: var(--radius);
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .platform-features li:hover {
            background: var(--background-light);
            transform: translateX(5px);
        }

        .platform-features i {
            color: var(--accent-color);
            font-size: 0.9rem;
        }

        .platform-footer {
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid var(--border-color);
        }

        /* Enhanced POS & Inventory Management */
        .pos-inventory-section {
            background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .pos-inventory-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: var(--gradient-pos);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
        }

        .pos-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .pos-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow-large);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .pos-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-floating);
            border-color: var(--pos-color);
        }

        .pos-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-pos);
        }

        .pos-icon {
            width: 80px;
            height: 80px;
            background: var(--pos-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: var(--pos-color);
            transition: transform 0.4s ease;
        }

        .pos-card:hover .pos-icon {
            transform: rotate(15deg) scale(1.1);
        }

        .inventory-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .inventory-feature {
            background: white;
            padding: 25px;
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: var(--shadow-medium);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .inventory-feature:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-large);
            border-color: var(--inventory-color);
        }

        /* Enhanced Staff Verification */
        .staff-verification {
            background: linear-gradient(135deg, var(--staff-light) 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .staff-verification::before {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: var(--gradient-staff);
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.1;
        }

        .verification-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .verification-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow-large);
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
        }

        .verification-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-floating);
            border-color: var(--staff-color);
        }

        .verification-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-staff);
        }

        .verification-icon {
            width: 80px;
            height: 80px;
            background: var(--staff-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: var(--staff-color);
            transition: transform 0.4s ease;
        }

        .verification-card:hover .verification-icon {
            transform: rotate(15deg) scale(1.1);
        }

        .verification-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .verification-feature {
            background: white;
            padding: 25px;
            border-radius: var(--radius-lg);
            text-align: center;
            box-shadow: var(--shadow-medium);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .verification-feature:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-large);
            border-color: var(--staff-color);
        }

        /* Enhanced Event Management */
        .event-management {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, var(--event-light) 0%, #ffffff 100%);
        }

        .event-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .event-card {
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-large);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            border: 2px solid transparent;
        }

        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-floating);
        }

        .event-header {
            height: 160px;
            position: relative;
            overflow: hidden;
        }

        .event-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 100%);
        }

        .event-wedding .event-header {
            background: linear-gradient(135deg, #d946ef, #a855f7);
        }

        .event-corporate .event-header {
            background: linear-gradient(135deg, #0ea5e9, #3b82f6);
        }

        .event-social .event-header {
            background: linear-gradient(135deg, #10b981, #0d9488);
        }

        .event-icon {
            position: absolute;
            top: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
        }

        .event-content {
            padding: 30px;
        }

        .event-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .event-services {
            list-style: none;
            margin: 20px 0;
        }

        .event-services li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        .event-services i {
            color: var(--accent-color);
        }

        /* Enhanced Venue Types Section */
        .venue-types-section {
            background: linear-gradient(135deg, var(--venue-light) 0%, #ffffff 100%);
        }

        .venue-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .venue-type-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow-large);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .venue-type-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-venue);
        }

        .venue-type-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-floating);
        }

        .venue-type-icon {
            width: 100px;
            height: 100px;
            background: var(--venue-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 3rem;
            color: var(--venue-color);
            transition: transform 0.4s ease;
        }

        .venue-type-card:hover .venue-type-icon {
            transform: rotate(15deg) scale(1.1);
        }

        /* Enhanced Vendor Marketplace */
        .vendor-marketplace {
            background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
            position: relative;
        }

        .vendor-categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 50px;
        }

        .vendor-category-card {
            background: white;
            border-radius: var(--radius-lg);
            padding: 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--shadow-medium);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .vendor-category-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-vendor);
        }

        .vendor-category-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-extra);
            border-color: var(--vendor-color);
        }

        .vendor-category-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-vendor);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }

        .vendor-count {
            display: inline-block;
            background: var(--vendor-light);
            color: var(--vendor-color);
            padding: 4px 12px;
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
            margin-top: 10px;
        }

        /* Enhanced Staffing Solutions */
        .staffing-solutions {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .staffing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .staffing-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 40px;
            box-shadow: var(--shadow-large);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .staffing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
            transition: height 0.3s ease;
        }

        .staffing-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-floating);
            border-color: var(--accent-color);
        }

        .staffing-card:hover::before {
            height: 8px;
        }

        .staffing-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: white;
            transition: transform 0.4s ease;
        }

        .staffing-card:hover .staffing-icon {
            transform: rotate(15deg) scale(1.1);
        }

        .staffing-features {
            list-style: none;
            margin: 25px 0;
        }

        .staffing-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            padding: 12px 15px;
            background: var(--background-light);
            border-radius: var(--radius);
            transition: all 0.3s ease;
        }

        .staffing-features li:hover {
            background: var(--accent-light);
            transform: translateX(10px);
        }

        .staffing-features i {
            color: var(--accent-color);
            font-size: 1.2rem;
        }

        .staffing-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 60px;
            padding: 40px;
            background: white;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-medium);
            flex-wrap: wrap;
        }

        .staffing-stat {
            text-align: center;
        }

        .staffing-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-color);
            margin-bottom: 10px;
            font-family: var(--font-display);
        }

        .staffing-stat-label {
            font-size: 1rem;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Enhanced Security Systems */
        .security-section {
            background: white;
        }

        .security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .security-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 40px;
            box-shadow: var(--shadow-large);
            border: 1px solid var(--border-color);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .security-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-security);
        }

        .security-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-floating);
            border-color: var(--security-color);
        }

        .security-icon {
            width: 80px;
            height: 80px;
            background: var(--security-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2rem;
            color: var(--security-color);
            transition: transform 0.4s ease;
        }

        .security-card:hover .security-icon {
            transform: rotate(15deg) scale(1.1);
        }

        /* Enhanced All Services Showcase */
        .all-services {
            position: relative;
        }

        .services-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 30px;
            background: white;
            border: 2px solid var(--border-color);
            border-radius: var(--radius-full);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tab-btn.active {
            background: var(--gradient-primary);
            color: white;
            border-color: var(--primary-color);
            box-shadow: var(--shadow-medium);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow-large);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-rainbow);
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.05);
            box-shadow: var(--shadow-floating);
        }

        .service-icon {
            width: 100px;
            height: 100px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5rem;
            color: white;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: rotate(15deg) scale(1.1);
        }

        /* Enhanced How It Works */
        .how-it-works {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .workflow-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .workflow-step {
            background: white;
            border-radius: var(--radius-xl);
            padding: 40px;
            text-align: center;
            box-shadow: var(--shadow-large);
            position: relative;
            transition: transform 0.3s ease;
        }

        .workflow-step:hover {
            transform: translateY(-10px);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            box-shadow: var(--shadow-medium);
        }

        .step-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2rem;
            color: var(--primary-color);
        }

        /* Enhanced App Showcase */
        .app-showcase {
            background: linear-gradient(135deg, var(--primary-light) 0%, white 100%);
        }

        .app-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        @media (max-width: 992px) {
            .app-container {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .app-features-list {
            display: grid;
            gap: 25px;
        }

        .app-feature {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: white;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-medium);
            transition: all 0.3s ease;
        }

        .app-feature:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-large);
        }

        .app-feature-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }

        .qr-display {
            background: white;
            border-radius: var(--radius-xl);
            padding: 50px;
            box-shadow: var(--shadow-extra);
            text-align: center;
        }

        .qr-container {
            width: 250px;
            height: 250px;
            margin: 30px auto;
            background: white;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-large);
            border: 1px solid var(--border-color);
        }

        /* Enhanced Integration Section */
        .integration-section {
            background: var(--gradient-dark);
            color: white;
        }

        .integration-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .integration-feature {
            text-align: center;
            padding: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--radius-xl);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .integration-feature:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        /* Enhanced Pricing Section */
        .pricing-section {
            background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
        }

        .pricing-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .pricing-card-premium {
            background: white;
            border-radius: var(--radius-xl);
            padding: 50px 40px;
            box-shadow: var(--shadow-large);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .pricing-card-premium:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-floating);
        }

        .pricing-card-premium.popular::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--gradient-luxury);
            color: var(--luxury-dark);
            padding: 8px 40px;
            font-size: 0.875rem;
            font-weight: 700;
            transform: rotate(45deg);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .plan-name {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .plan-price {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 10px;
            font-family: var(--font-display);
        }

        .plan-period {
            color: var(--text-light);
            font-size: 1rem;
        }

        .pricing-features {
            list-style: none;
            margin: 40px 0;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px 20px;
            background: var(--background-light);
            border-radius: var(--radius);
            transition: all 0.3s ease;
        }

        .pricing-features li:hover {
            background: var(--primary-light);
            transform: translateX(10px);
        }

        .feature-check {
            width: 30px;
            height: 30px;
            background: var(--gradient-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        /* Enhanced CTA Section */
        .cta-premium {
            background: linear-gradient(135deg, var(--luxury-dark) 0%, #2d1b69 100%);
            color: white;
            padding: 150px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.2) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-title {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 30px;
            background: linear-gradient(to right, #fff, var(--luxury-gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Enhanced Footer */
        .footer-premium {
            background: #0f172a;
            color: white;
            padding: 100px 0 40px;
            position: relative;
        }

        .footer-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
            gap: 50px;
            margin-bottom: 60px;
        }

        @media (max-width: 1200px) {
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 2rem;
            font-weight: 900;
            margin-bottom: 30px;
            font-family: var(--font-display);
        }

        .footer-logo i {
            font-size: 2.5rem;
            background: var(--gradient-rainbow);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-column h4 {
            color: var(--luxury-gold);
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--gradient-luxury);
            border-radius: 2px;
        }

        .footer-column a {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            position: relative;
            padding-left: 0;
        }

        .footer-column a::before {
            content: '→';
            position: absolute;
            left: 0;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-column a:hover {
            color: white;
            padding-left: 20px;
        }

        .footer-column a:hover::before {
            opacity: 1;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid #1e293b;
            color: #64748b;
        }

        /* Registration Form Modal */
        .registration-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .registration-modal.active {
            display: flex;
        }

        .registration-form {
            background: white;
            border-radius: var(--radius-xl);
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: var(--shadow-extra);
        }

        .form-header {
            background: var(--gradient-primary);
            color: white;
            padding: 30px;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
            text-align: center;
        }

        .form-content {
            padding: 30px;
        }

        .form-step {
            display: none;
        }

        .form-step.active {
            display: block;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .form-input {
            width: 100%;
            padding: 14px;
            border: 2px solid var(--border-color);
            border-radius: var(--radius);
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px var(--primary-light);
        }

        .form-select {
            width: 100%;
            padding: 14px;
            border: 2px solid var(--border-color);
            border-radius: var(--radius);
            font-size: 16px;
            background: white;
            cursor: pointer;
        }

        .form-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .venue-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .venue-category {
            text-align: center;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: var(--radius);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .venue-category:hover {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .venue-category.selected {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: white;
        }

        .otp-container {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
            margin: 20px 0;
        }

        .otp-input {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: 20px;
            border: 2px solid var(--border-color);
            border-radius: var(--radius);
        }

        .otp-input:focus {
            border-color: var(--primary-color);
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            font-size: 24px;
            color: white;
            cursor: pointer;
        }

        /* Flash Message */
        .flash-message {
            background: white;
            padding: 20px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-extra);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: slideIn 0.3s ease;
            max-width: 400px;
        }

        .flash-message.success {
            border-left: 5px solid var(--accent-color);
        }

        .flash-message.error {
            border-left: 5px solid var(--security-color);
        }

        .flash-message.info {
            border-left: 5px solid var(--primary-color);
        }

        @keyframes slideIn {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* ===== COMPREHENSIVE MOBILE RESPONSIVE DESIGN ===== */

        /* Mobile Menu Active State */
        .nav-links.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            padding: 20px;
            box-shadow: var(--shadow-extra);
            z-index: 1000;
            gap: 5px;
        }

        .nav-links.active .nav-dropdown {
            width: 100%;
        }

        .nav-links.active .nav-link {
            padding: 12px 15px;
            border-radius: var(--radius);
            width: 100%;
            display: block;
        }

        .nav-links.active .nav-link:hover {
            background: var(--primary-light);
        }

        .nav-links.active .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            border: none;
            background: var(--background-light);
            border-radius: var(--radius);
            margin-top: 5px;
            display: none;
        }

        .nav-links.active .nav-dropdown:hover .dropdown-menu,
        .nav-links.active .nav-dropdown.open .dropdown-menu {
            display: block;
        }

        /* 1200px - Large tablets / small desktops */
        @media (max-width: 1200px) {
            .hero-title { font-size: 3.8rem; }
            .section-title { font-size: 3rem; }
            .app-container { grid-template-columns: 1fr; text-align: center; }
            .platforms-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-cards-grid { grid-template-columns: repeat(2, 1fr); }
            .staffing-stats { gap: 25px; }
        }

        /* 992px - Tablets - activate drawer */
        @media (max-width: 992px) {
            .nav-links { display: none !important; }
            .nav-auth-buttons { display: none !important; }
            .mobile-menu-btn { display: flex !important; }
            .nav-container { padding: 12px 16px; position: relative; }
            .nav-logo { font-size: 22px; }
            .nav-logo i { font-size: 24px; }
            
            .hero-title { font-size: 3rem; }
            .hero-subtitle { font-size: 1.3rem; }
            .section-title { font-size: 2.5rem; }
            
            .platforms-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
            .venue-types-grid { grid-template-columns: repeat(2, 1fr); }
            .event-container { grid-template-columns: repeat(2, 1fr); }
            .vendor-categories-grid { grid-template-columns: repeat(2, 1fr); }
            .staffing-cards { grid-template-columns: 1fr; }
            .security-grid { grid-template-columns: repeat(2, 1fr); }
            .pos-container { grid-template-columns: repeat(2, 1fr); }
            .supplier-categories { grid-template-columns: repeat(2, 1fr); }
            .verification-container { grid-template-columns: repeat(2, 1fr); }
            .analytics-features { grid-template-columns: repeat(2, 1fr); }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .workflow-steps { grid-template-columns: repeat(2, 1fr); }
            .integration-features { grid-template-columns: repeat(2, 1fr); }
            .inventory-features { grid-template-columns: repeat(2, 1fr); }
            .verification-features-grid { grid-template-columns: repeat(2, 1fr); }
            
            .hero-stats { gap: 30px; flex-wrap: wrap; justify-content: center; }
            .floating-element { display: none; }
            .booking-stats { grid-template-columns: repeat(2, 1fr); }
            
            .section { padding: 80px 0; }
            .section-header { margin-bottom: 50px; }
            
            .app-features-list { gap: 20px; }
            .app-feature { padding: 20px; }
            
            .cta-premium { padding: 100px 0; }
            .cta-title { font-size: 3rem; }
            
            .footer-content { grid-template-columns: repeat(3, 1fr); gap: 30px; }
        }

        /* 768px - Mobile landscape / large phones */
        @media (max-width: 768px) {
            /* Navigation */
            .nav-container { padding: 12px 16px; }
            .nav-logo { font-size: 22px; }
            .nav-logo i { font-size: 26px; }

            /* Hero */
            .hero { padding: 130px 0 80px; }
            .hero-title { font-size: 2.4rem; line-height: 1.2; }
            .hero-subtitle { font-size: 1.1rem; margin-bottom: 35px; padding: 0 10px; }
            .hero-tag { font-size: 12px; padding: 6px 16px; }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .hero-buttons .btn {
                width: 100%;
                max-width: 320px;
                justify-content: center;
            }
            .hero-stats {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 20px;
                justify-content: center;
            }
            .hero-stat { min-width: 120px; }
            .stat-number { font-size: 2.5rem; }

            /* Sections */
            .section { padding: 70px 0; }
            .section-header { margin-bottom: 40px; }
            .section-title { font-size: 2rem; }
            .section-subtitle { font-size: 1rem; padding: 0 10px; }

            /* All grids → 1 column */
            .platforms-grid,
            .venue-types-grid,
            .event-container,
            .vendor-categories-grid,
            .staffing-cards,
            .security-grid,
            .pos-container,
            .supplier-categories,
            .verification-container,
            .analytics-features,
            .services-grid,
            .workflow-steps,
            .integration-features,
            .inventory-features,
            .verification-features-grid,
            .pricing-cards-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            /* Cards */
            .platform-card { padding: 25px; }
            .pos-card { padding: 30px; }
            .verification-card { padding: 30px; }
            .event-card { padding: 0; }
            .event-content { padding: 20px; }
            .staffing-card { padding: 30px; }
            .security-card { padding: 30px; }
            .service-card { padding: 30px; }
            .workflow-step { padding: 40px 25px 30px; }
            .pricing-card-premium { padding: 35px 25px; }

            /* Platform header in cards */
            .platform-header { gap: 15px; }
            .platform-icon { width: 55px; height: 55px; font-size: 1.4rem; }
            .platform-title { font-size: 1.2rem; }

            /* Booking stats */
            .booking-stats { grid-template-columns: repeat(2, 1fr); gap: 15px; }

            /* Staffing stats */
            .staffing-stats {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 20px;
                padding: 25px;
                justify-content: center;
            }
            .staffing-stat { min-width: 120px; }
            .staffing-stat-number { font-size: 2rem; }

            /* Services tabs */
            .services-tabs {
                flex-direction: row;
                flex-wrap: wrap;
                gap: 8px;
                justify-content: center;
            }
            .tab-btn { padding: 10px 18px; font-size: 13px; }

            /* App showcase */
            .app-container { gap: 40px; }
            .qr-display { padding: 30px; }
            .qr-container { width: 200px; height: 200px; }

            /* Registration form */
            .registration-form { width: 96%; max-height: 95vh; }
            .form-header { padding: 20px; }
            .form-content { padding: 20px; }
            .form-buttons { flex-direction: column; gap: 10px; }
            .form-buttons .btn { width: 100%; justify-content: center; }
            .otp-container { grid-template-columns: repeat(6, 1fr); gap: 6px; }
            .otp-input { width: 40px; height: 40px; font-size: 16px; }

            /* CTA */
            .cta-premium { padding: 80px 0; }
            .cta-title { font-size: 2.2rem; }

            /* Footer */
            .footer-premium { padding: 70px 0 30px; }
            .footer-content { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .footer-logo { font-size: 1.6rem; }

            /* Buttons */
            .btn { padding: 14px 24px; font-size: 14px; }
            .btn-large { padding: 15px 28px; font-size: 15px; }
            .btn-extra-large { padding: 16px 28px; font-size: 16px; }

            /* Pricing */
            .plan-price { font-size: 3rem; }
            .pricing-features li { padding: 12px 15px; }
        }

        /* 576px - Mobile portrait */
        @media (max-width: 576px) {
            /* Navigation */
            .nav-container { padding: 10px 15px; }
            .nav-logo { font-size: 20px; gap: 8px; }
            .nav-logo i { font-size: 22px; }
            .mobile-menu-btn { font-size: 22px; padding: 8px; }

            /* Hero */
            .hero { padding: 110px 0 70px; }
            .hero-title { font-size: 1.9rem; }
            .hero-subtitle { font-size: 1rem; }
            .hero-buttons .btn {
                width: 100%;
                max-width: 100%;
                padding: 14px 20px;
            }
            .hero-stats { gap: 15px; }
            .hero-stat { min-width: 100px; }
            .stat-number { font-size: 2.2rem; }
            .stat-label { font-size: 0.85rem; }

            /* Sections */
            .section { padding: 55px 0; }
            .container { padding: 0 15px; }
            .section-title { font-size: 1.75rem; }
            .section-subtitle { font-size: 0.95rem; }
            .section-header { margin-bottom: 35px; }

            /* Cards - smaller padding on tiny screens */
            .platform-card,
            .pos-card,
            .verification-card,
            .staffing-card,
            .security-card,
            .service-card,
            .integration-feature {
                padding: 22px;
            }
            .platform-icon { width: 50px; height: 50px; font-size: 1.2rem; }
            .platform-title { font-size: 1.1rem; }

            /* Icons */
            .pos-icon,
            .verification-icon,
            .staffing-icon,
            .security-icon,
            .service-icon,
            .venue-type-icon {
                width: 65px;
                height: 65px;
                font-size: 1.8rem;
            }
            .vendor-category-icon { width: 65px; height: 65px; font-size: 1.6rem; }

            /* Venue categories in form */
            .venue-categories { grid-template-columns: repeat(2, 1fr); gap: 10px; }
            .venue-category { padding: 12px 10px; font-size: 13px; }

            /* Booking stats → single column */
            .booking-stats { grid-template-columns: 1fr; }

            /* Staffing stats */
            .staffing-stats { padding: 20px; gap: 15px; }
            .staffing-stat-number { font-size: 1.8rem; }

            /* Workflow step numbers */
            .step-number { width: 50px; height: 50px; font-size: 1.2rem; top: -15px; }

            /* Services tabs → horizontal scroll */
            .services-tabs {
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: flex-start;
                padding-bottom: 10px;
                -webkit-overflow-scrolling: touch;
                gap: 8px;
            }
            .services-tabs::-webkit-scrollbar { height: 3px; }
            .services-tabs::-webkit-scrollbar-track { background: var(--border-color); border-radius: 3px; }
            .services-tabs::-webkit-scrollbar-thumb { background: var(--primary-color); border-radius: 3px; }
            .tab-btn { white-space: nowrap; flex-shrink: 0; padding: 9px 16px; font-size: 13px; }

            /* QR and App */
            .qr-display { padding: 25px 20px; }
            .qr-container { width: 180px; height: 180px; }
            .app-feature { padding: 15px; gap: 15px; }
            .app-feature-icon { width: 50px; height: 50px; font-size: 1.3rem; }

            /* CTA */
            .cta-title { font-size: 1.9rem; }
            .cta-premium { padding: 65px 0; }

            /* Pricing */
            .plan-price { font-size: 2.5rem; }

            /* Flash notifications */
            .flash-message { max-width: calc(100vw - 30px); right: 15px !important; padding: 15px 20px; }

            /* Footer */
            .footer-content { grid-template-columns: 1fr; gap: 25px; }
            .footer-premium { padding: 55px 0 25px; }
            .footer-logo { font-size: 1.4rem; }

            /* Registration form OTP */
            .otp-input { width: 36px; height: 38px; font-size: 15px; }

            /* Buttons */
            .btn { padding: 13px 20px; font-size: 14px; gap: 8px; }
            .btn-extra-large { padding: 15px 24px; font-size: 15px; }
        }

        /* 400px - Very small phones */
        @media (max-width: 400px) {
            .hero-title { font-size: 1.65rem; }
            .section-title { font-size: 1.55rem; }
            .hero-stat { min-width: 90px; }
            .stat-number { font-size: 1.9rem; }
            .nav-logo span { display: none; }
            .otp-container { gap: 4px; }
            .otp-input { width: 32px; height: 35px; font-size: 14px; }
            .venue-categories { grid-template-columns: repeat(2, 1fr); }
        }

        /* Additional Enhanced Styles */
        .highlight-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }

        .gradient-border {
            position: relative;
            background: white;
            border-radius: var(--radius-xl);
            padding: 2px;
        }

        .gradient-border::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient-premium);
            border-radius: var(--radius-xl);
            z-index: -1;
        }

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        .rotate-animation {
            animation: rotate 20s linear infinite;
        }

        .float-animation {
            animation: float 6s ease-in-out infinite;
        }

        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

/* ============================================================
           BYFETE PARTNERS — v3 MASTER UPGRADE
           ============================================================ */

        /* MOBILE DRAWER Z-INDEX & DISPLAY FIX */
        .mobile-menu-btn {
            display: none;
            z-index: 2200 !important;
            position: relative;
        }
        @media (max-width: 1024px) {
            .mobile-menu-btn { display: flex !important; }
            .nav-links { display: none !important; }
            .nav-auth-buttons { display: none !important; }
        }
        @media (min-width: 1025px) {
            .mobile-menu-btn { display: none !important; }
            .nav-links { display: flex !important; }
            .nav-auth-buttons { display: flex !important; }
        }
        .mobile-drawer { z-index: 3000 !important; }
        .mobile-overlay { z-index: 2900 !important; }

        /* ── FONT & ROOT ── */
        :root {
            --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --bp-gold: #C9974A;
            --bp-gold-light: #F5E6CC;
            --bp-dark: #0f1923;
        }

        /* ── NAVBAR ── */
        .landing-navbar { height: 68px; }
        .nav-container { padding: 0 24px; height: 68px; gap: 0; }
        .nav-logo { font-family: var(--font-display); font-size: 21px; font-weight: 700; flex-shrink: 0; }
        .nav-logo span {
            background: linear-gradient(135deg, #7c3aed 0%, #C9974A 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }
        .nav-links { flex: 1; justify-content: center; gap: 2px; }
        .nav-link { font-size: 13px; padding: 7px 10px; font-weight: 600; white-space: nowrap; }
        .nav-auth-buttons { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
        .nav-auth-buttons .btn {
            padding: 9px 16px !important; font-size: 13px !important;
            font-weight: 600 !important; border-radius: 10px !important;
            white-space: nowrap !important; gap: 6px !important;
        }
        .nav-auth-buttons .btn-outline {
            border: 2px solid var(--primary-color) !important;
            color: var(--primary-color) !important;
            background: transparent !important;
        }
        .nav-auth-buttons .btn-luxury {
            background: linear-gradient(135deg, #C9974A 0%, #e8b96a 100%) !important;
            color: #0f1923 !important; font-weight: 700 !important;
            box-shadow: 0 4px 15px rgba(201,151,74,0.35) !important;
        }

        /* ── HERO ── */
        .hero { background: linear-gradient(145deg, #0c0f1e 0%, #1a0a35 45%, #0a1628 100%); }
        .hero-title { font-family: var(--font-display); font-size: clamp(2.2rem, 6vw, 5rem); }
        .hero-subtitle { font-size: clamp(0.95rem, 2.5vw, 1.35rem); }
        .stat-number { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); }

        /* ── SECTION TITLES ── */
        .section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 5vw, 3.5rem); }
        .section-title::after {
            background: linear-gradient(90deg, #C9974A 0%, #e8b96a 100%) !important;
            height: 3px !important; width: 80px !important;
        }
        .section-tag {
            background: linear-gradient(135deg, #C9974A 0%, #e8b96a 100%) !important;
            color: #0f1923 !important; font-weight: 700 !important;
        }

        /* ── BUTTONS ── */
        .btn { border-radius: 12px !important; font-family: var(--font-primary); }
        .btn-luxury {
            background: linear-gradient(135deg, #C9974A 0%, #e8b96a 100%) !important;
            color: #0f1923 !important; font-weight: 700 !important;
            box-shadow: 0 6px 20px rgba(201,151,74,0.35) !important;
        }

        /* ── FOOTER ── */
        .footer-premium { background: linear-gradient(145deg, #0a0d16 0%, #0f1923 100%); }
        .footer-logo { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; }
        .cta-premium { background: linear-gradient(145deg, #0c0f1e 0%, #1a0a35 60%, #0c1a0f 100%); }
        .cta-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem); }

        /* ── DRAWER UPGRADE ── */
        .drawer-header {
            background: linear-gradient(135deg, #0f1923 0%, #1a0a35 100%);
            padding: 20px 22px 20px;
            min-height: 80px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .drawer-logo {
            font-family: var(--font-display);
            font-size: 20px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 9px;
            flex: 1;
            white-space: nowrap;
        }
        .drawer-logo i { color: #C9974A; font-size: 22px; flex-shrink: 0; }
        .drawer-logo span { line-height: 1.1; }
        .drawer-footer .btn-luxury {
            background: linear-gradient(135deg, #C9974A 0%, #e8b96a 100%) !important;
            color: #0f1923 !important; font-weight: 700 !important;
            padding: 14px 20px !important; border-radius: 12px !important;
        }
        .drawer-footer .btn-outline {
            border: 2px solid var(--primary-color) !important;
            color: var(--primary-color) !important;
            padding: 14px 20px !important; border-radius: 12px !important;
        }

        /* ============================================================
           UNIVERSAL HORIZONTAL SCROLL SYSTEM FOR MOBILE
           All major sections get swipe-able cards
           ============================================================ */

        /* ── SCROLL WRAPPER BASE ── */
        .h-scroll-wrap {
            position: relative;
        }
        .h-scroll-track {
            display: flex;
            overflow-x: auto;
            overflow-y: visible;
            gap: 16px;
            padding: 8px 4px 24px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }
        .h-scroll-track::-webkit-scrollbar { display: none; }
        .h-scroll-track > * {
            flex-shrink: 0;
            scroll-snap-align: start;
        }
        /* Scroll progress bar */
        .h-scroll-bar {
            height: 3px;
            background: var(--border-color);
            border-radius: 3px;
            margin: 0 4px 8px;
            overflow: hidden;
        }
        .h-scroll-progress {
            height: 100%;
            width: 25%;
            background: linear-gradient(90deg, var(--primary-color), #C9974A);
            border-radius: 3px;
            transition: transform 0.1s ease;
            transform-origin: left;
        }

        /* ── 4 PLATFORMS ── */
        @media (max-width: 900px) {
            .platforms-grid {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .platforms-grid::-webkit-scrollbar { display: none; }
            .platforms-grid .platform-card {
                min-width: min(82vw, 310px) !important;
                max-width: min(82vw, 310px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── 12 SERVICE CATEGORIES ── */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 18px;
        }
        @media (max-width: 900px) {
            .services-grid {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .services-grid::-webkit-scrollbar { display: none; }
            .services-grid .service-card {
                min-width: min(72vw, 240px) !important;
                max-width: min(72vw, 240px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── ALL VENUE TYPES ── */
        .venue-types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 22px;
        }
        @media (max-width: 900px) {
            .venue-types-grid {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .venue-types-grid::-webkit-scrollbar { display: none; }
            .venue-types-grid .venue-type-card {
                min-width: min(78vw, 280px) !important;
                max-width: min(78vw, 280px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── COMPLETE STAFFING SOLUTIONS ── */
        @media (max-width: 900px) {
            .staffing-container {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .staffing-container::-webkit-scrollbar { display: none; }
            .staffing-container .staffing-card {
                min-width: min(80vw, 300px) !important;
                max-width: min(80vw, 300px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── POS & STOCK MANAGEMENT ── */
        @media (max-width: 900px) {
            .pos-container {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .pos-container::-webkit-scrollbar { display: none; }
            .pos-container .pos-card {
                min-width: min(80vw, 300px) !important;
                max-width: min(80vw, 300px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── VENDOR CATEGORIES ── */
        @media (max-width: 900px) {
            .vendor-categories-grid {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .vendor-categories-grid::-webkit-scrollbar { display: none; }
            .vendor-categories-grid .vendor-category-card {
                min-width: min(72vw, 250px) !important;
                max-width: min(72vw, 250px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── EVENT MANAGEMENT ── */
        @media (max-width: 900px) {
            .event-container {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .event-container::-webkit-scrollbar { display: none; }
            .event-container .event-card {
                min-width: min(80vw, 300px) !important;
                max-width: min(80vw, 300px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── VERIFICATION CARDS ── */
        @media (max-width: 900px) {
            .verification-container {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .verification-container::-webkit-scrollbar { display: none; }
            .verification-container .verification-card {
                min-width: min(80vw, 300px) !important;
                max-width: min(80vw, 300px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── PRICING CARDS ── */
        @media (max-width: 900px) {
            .pricing-grid {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .pricing-grid::-webkit-scrollbar { display: none; }
            .pricing-grid .pricing-card-premium {
                min-width: min(84vw, 320px) !important;
                max-width: min(84vw, 320px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── SECURITY CARDS ── */
        @media (max-width: 900px) {
            .security-container,
            .security-grid {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .security-container .security-card,
            .security-grid .security-card {
                min-width: min(80vw, 300px) !important;
                max-width: min(80vw, 300px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── INVENTORY FEATURES ── */
        @media (max-width: 900px) {
            .inventory-features {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .inventory-features .inventory-feature {
                min-width: min(72vw, 240px) !important;
                max-width: min(72vw, 240px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── ANALYTICS CARDS ── */
        @media (max-width: 900px) {
            .analytics-grid,
            .analytics-container {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .analytics-grid .analytics-card,
            .analytics-container .analytics-card {
                min-width: min(80vw, 300px) !important;
                max-width: min(80vw, 300px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── TRAVEL SERVICES ── */
        @media (max-width: 900px) {
            .travel-services-grid,
            .travel-container {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .travel-services-grid .travel-service,
            .travel-container .travel-service {
                min-width: min(78vw, 280px) !important;
                max-width: min(78vw, 280px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── RATING CARDS ── */
        @media (max-width: 900px) {
            .ratings-grid,
            .rating-container {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .ratings-grid .rating-card,
            .rating-container .rating-card {
                min-width: min(78vw, 280px) !important;
                max-width: min(78vw, 280px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── SUPPLIER CATEGORIES ── */
        @media (max-width: 900px) {
            .supplier-categories-grid,
            .supplier-container {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .supplier-categories-grid .supplier-category-card,
            .supplier-container .supplier-category-card {
                min-width: min(78vw, 280px) !important;
                max-width: min(78vw, 280px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── SCROLL HINT LABEL (appears below any scrollable section) ── */
        .scroll-hint-label {
            display: none;
            text-align: center;
            font-size: 12px;
            color: var(--text-light);
            margin-top: -12px;
            margin-bottom: 16px;
            animation: hintPulse 2s ease-in-out infinite;
            letter-spacing: 0.5px;
        }
        @media (max-width: 900px) {
            .scroll-hint-label { display: flex; align-items: center; justify-content: center; gap: 6px; }
        }
        @keyframes hintPulse {
            0%, 100% { opacity: 0.5; transform: translateX(0); }
            50% { opacity: 1; transform: translateX(4px); }
        }

        /* ── MOBILE GENERAL ── */
        @media (max-width: 767px) {
            .hero { padding: 110px 0 70px !important; min-height: auto !important; }
            .floating-element { display: none !important; }
            .hero-stats { gap: 16px; padding: 24px 16px; flex-wrap: wrap; }
            .stat-item { min-width: 100px; }
            .hero-buttons { flex-direction: column; gap: 12px; align-items: center; }
            .hero-buttons .btn { width: 100%; max-width: 340px; justify-content: center; }
            .section { padding: 55px 0 !important; }
            .section-header { margin-bottom: 30px !important; }
            .footer-content { grid-template-columns: 1fr; gap: 24px; }
            .staffing-stats {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 14px !important;
                padding: 20px 16px !important;
            }
            .hero-stats {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }
        @media (max-width: 480px) {
            .form-buttons { flex-direction: column !important; }
            .form-buttons .btn { width: 100% !important; justify-content: center !important; }
            .otp-container { gap: 6px; }
        }

        /* ── SERVICE CARD STYLE ── */
        .service-card {
            background: white;
            border-radius: 18px;
            padding: 26px 20px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.07);
            transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
            border: 1.5px solid var(--border-color);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }
        .service-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.12);
            border-color: var(--primary-color);
        }
        .service-icon {
            width: 64px; height: 64px;
            background: var(--primary-light);
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.7rem;
            color: var(--primary-color);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        .service-card:hover .service-icon { transform: scale(1.12) rotate(-6deg); }
        .service-card h3 { font-size: 1rem; font-weight: 700; margin: 2px 0; }
        .service-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.4; }
        .service-card .btn { padding: 9px 16px; font-size: 13px; margin-top: 4px; }

        /* ── PLATFORM CARD ── */
        .platform-card { border-radius: 20px !important; }
        .platform-card:hover {
            transform: translateY(-8px) !important;
        }
        .platform-card.staff:hover { box-shadow: 0 20px 50px rgba(236,72,153,0.15) !important; }
        .platform-card.vendor:hover { box-shadow: 0 20px 50px rgba(139,92,246,0.15) !important; }
        .platform-card.event:hover { box-shadow: 0 20px 50px rgba(236,72,153,0.15) !important; }
        .platform-card.venue:hover { box-shadow: 0 20px 50px rgba(59,130,246,0.15) !important; }
        .platform-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; }

        /* ── PLATFORMS SCROLL HINT ── */
        .platforms-scroll-hint { display: none; }
        @media (max-width: 900px) {
            .platforms-scroll-hint {
                display: flex;
                justify-content: center;
                gap: 6px;
                margin: 4px 0 20px;
            }
            .platforms-scroll-hint span {
                width: 6px; height: 6px;
                border-radius: 50%;
                background: var(--border-color);
                transition: all 0.3s ease;
                display: inline-block;
            }
            .platforms-scroll-hint span.active {
                background: var(--primary-color);
                width: 18px;
                border-radius: 3px;
            }
        }

        /* ── WORKFLOW STEPS MOBILE ── */
        @media (max-width: 767px) {
            .workflow-steps { grid-template-columns: 1fr !important; }
        }

        /* ── INTEGRATION FEATURES MOBILE ── */
        @media (max-width: 900px) {
            .integration-features {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 8px 2px 20px !important;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
            }
            .integration-features::-webkit-scrollbar { display: none; }
            .integration-features .integration-feature {
                min-width: min(72vw, 250px) !important;
                max-width: min(72vw, 250px) !important;
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
            }
        }

        /* ── APP FEATURES MOBILE ── */
        @media (max-width: 767px) {
            .app-features-list { grid-template-columns: 1fr !important; }
        }

        /* ── BEAUTIFUL SCROLL INDICATOR ARROWS ── */
        .swipe-arrow-hint {
            display: none;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 100%;
            background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
            pointer-events: none;
            align-items: center;
            justify-content: flex-end;
            padding-right: 4px;
            border-radius: 0 12px 12px 0;
        }
        @media (max-width: 900px) { .swipe-arrow-hint { display: flex; } }

        /* ── MOBILE SECTION PADDING ── */
        @media (max-width: 767px) {
            .section { padding: 60px 0 !important; }
            .section-header { margin-bottom: 32px !important; }
            .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem) !important; }
        }

        /* ── STAFFING STATS MOBILE ── */
        @media (max-width: 600px) {
            .staffing-stats {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 16px !important;
                padding: 24px 16px !important;
            }
            .hero-stats {
                display: grid !important;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 16px !important;
            }
        }

        /* ── DATA SYNC ROW MOBILE ── */
        @media (max-width: 600px) {
            .sync-row {
                flex-direction: column !important;
                gap: 16px !important;
            }
            .sync-row .fas.fa-sync-alt { transform: rotate(90deg); }
        }

        /* ── PRICING SECTION TAG ── */
        .plan-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; }

        /* ── INTEGRATION FEATURES ── */
        @media (max-width: 600px) {
            .integration-features { grid-template-columns: 1fr !important; }
        }

        /* ── VENDOR GRID MOBILE ── */
        @media (max-width: 600px) {
            .vendor-categories-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
        }

        /* ── ANALYTICS GRID MOBILE ── */
        @media (max-width: 600px) {
            .analytics-grid { grid-template-columns: 1fr !important; }
        }

        /* ── TRAVEL SERVICES MOBILE ── */
        @media (max-width: 600px) {
            .travel-services-grid { grid-template-columns: 1fr !important; }
        }

        /* ── FORM BUTTONS MOBILE ── */
        @media (max-width: 480px) {
            .form-buttons { flex-direction: column !important; }
            .form-buttons .btn { width: 100% !important; justify-content: center !important; }
        }

        /* ── WORKFLOW STEPS ── */
        @media (max-width: 767px) {
            .workflow-steps {
                grid-template-columns: 1fr !important;
            }
        }

        /* ── BEAUTIFUL CARD HOVER GLOW ── */
        .platform-card.staff:hover { box-shadow: 0 20px 50px rgba(236,72,153,0.15) !important; }
        .platform-card.vendor:hover { box-shadow: 0 20px 50px rgba(139,92,246,0.15) !important; }
        .platform-card.event:hover { box-shadow: 0 20px 50px rgba(236,72,153,0.15) !important; }
        .platform-card.venue:hover { box-shadow: 0 20px 50px rgba(59,130,246,0.15) !important; }


        /* ============================================================
           BYFETE PARTNERS — v4 MOBILE OVERFLOW + TEXT FIX
           ============================================================ */

        /* ── GLOBAL OVERFLOW PREVENTION ── */
        *, *::before, *::after { box-sizing: border-box !important; }
        html, body { overflow-x: hidden !important; max-width: 100vw !important; }
        img, svg, video, canvas { max-width: 100% !important; }

        /* All text never overflows its card */
        .platform-card *, .service-card *, .venue-type-card *,
        .staffing-card *, .pos-card *, .verification-card *,
        .event-card *, .vendor-category-card *, .security-card *,
        .integration-feature *, .pricing-card-premium *,
        .workflow-step *, .analytics-card *, .rating-card * {
            max-width: 100%;
            word-break: break-word;
            overflow-wrap: break-word;
        }

        /* ── SECTION OVERFLOW ── */
        .section { overflow: hidden; }
        .container { overflow: visible; }

        /* ── MOBILE NAV: ONLY SHOW HAMBURGER ── */
        @media (max-width: 1024px) {
            .nav-links { display: none !important; }
            .nav-auth-buttons { display: none !important; }
            .mobile-menu-btn { display: flex !important; }
        }
        @media (min-width: 1025px) {
            .mobile-menu-btn { display: none !important; }
            .nav-links { display: flex !important; }
            .nav-auth-buttons { display: flex !important; }
        }

        /* ── DRAWER Z-INDEX (HIGHEST PRIORITY) ── */
        .mobile-overlay { z-index: 9000 !important; }
        .mobile-drawer { z-index: 9100 !important; }
        .mobile-menu-btn { z-index: 9200 !important; position: relative; }

        /* ── DRAWER OPEN STATE ── */
        .mobile-drawer { transform: translateX(-100%); transition: transform 0.38s cubic-bezier(0.4,0,0.2,1); }
        .mobile-drawer.active { transform: translateX(0) !important; }
        .mobile-overlay { display: none; }
        .mobile-overlay.active { display: block !important; }

        /* ── MOBILE HORIZONTAL SCROLL SECTIONS — CLEAN APPROACH ── */
        /* Each scroll container: no grid, just flex row with overflow */
        @media (max-width: 900px) {
            /* ── Override ALL grid layouts to flex-row for horizontal scroll ── */
            .platforms-grid,
            .services-grid,
            .venue-types-grid,
            .staffing-container,
            .pos-container,
            .vendor-categories-grid,
            .event-container,
            .verification-container,
            .integration-features,
            .security-grid,
            .security-container,
            .inventory-features,
            .analytics-grid,
            .travel-services-grid,
            .ratings-grid,
            .supplier-categories-grid,
            .pricing-grid {
                display: flex !important;
                flex-direction: row !important;
                flex-wrap: nowrap !important;
                overflow-x: auto !important;
                overflow-y: visible !important;
                gap: 14px !important;
                padding: 6px 0 20px !important;
                scroll-snap-type: x mandatory !important;
                -webkit-overflow-scrolling: touch !important;
                scrollbar-width: none !important;
                -ms-overflow-style: none !important;
                /* Critical: allow cards to be wider than viewport */
                width: 100% !important;
                max-width: 100% !important;
            }
            .platforms-grid::-webkit-scrollbar,
            .services-grid::-webkit-scrollbar,
            .venue-types-grid::-webkit-scrollbar,
            .staffing-container::-webkit-scrollbar,
            .pos-container::-webkit-scrollbar,
            .vendor-categories-grid::-webkit-scrollbar,
            .event-container::-webkit-scrollbar,
            .verification-container::-webkit-scrollbar,
            .integration-features::-webkit-scrollbar,
            .security-grid::-webkit-scrollbar,
            .inventory-features::-webkit-scrollbar,
            .analytics-grid::-webkit-scrollbar,
            .travel-services-grid::-webkit-scrollbar,
            .ratings-grid::-webkit-scrollbar,
            .supplier-categories-grid::-webkit-scrollbar,
            .pricing-grid::-webkit-scrollbar { display: none !important; }

            /* Each card gets a fixed mobile width */
            .platforms-grid > *,
            .services-grid > *,
            .venue-types-grid > *,
            .staffing-container > *,
            .pos-container > *,
            .vendor-categories-grid > *,
            .event-container > *,
            .verification-container > *,
            .integration-features > *,
            .security-grid > *,
            .security-container > *,
            .inventory-features > *,
            .analytics-grid > *,
            .travel-services-grid > *,
            .ratings-grid > *,
            .supplier-categories-grid > *,
            .pricing-grid > * {
                flex-shrink: 0 !important;
                flex-grow: 0 !important;
                scroll-snap-align: start !important;
                min-width: min(80vw, 280px) !important;
                max-width: min(80vw, 280px) !important;
                width: min(80vw, 280px) !important;
                /* Ensure content doesn't overflow card */
                overflow: hidden !important;
            }

            /* Platform cards slightly wider */
            .platforms-grid > .platform-card {
                min-width: min(84vw, 300px) !important;
                max-width: min(84vw, 300px) !important;
                width: min(84vw, 300px) !important;
            }

            /* Pricing cards wider */
            .pricing-grid > .pricing-card-premium {
                min-width: min(86vw, 320px) !important;
                max-width: min(86vw, 320px) !important;
                width: min(86vw, 320px) !important;
            }
        }

        /* ── HERO MOBILE ── */
        @media (max-width: 767px) {
            .hero {
                padding: 100px 0 60px !important;
                min-height: auto !important;
            }
            .hero-container { padding: 0 16px; }
            .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem) !important; }
            .hero-subtitle { font-size: 0.95rem !important; max-width: 100%; }
            .floating-element { display: none !important; }
            .hero-stats {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 16px !important;
                padding: 20px 0 !important;
            }
            .stat-number { font-size: 2rem !important; }
            .hero-buttons {
                flex-direction: column !important;
                gap: 12px !important;
                align-items: stretch !important;
            }
            .hero-buttons .btn {
                width: 100% !important;
                justify-content: center !important;
                text-align: center !important;
            }
        }

        /* ── SECTION MOBILE ── */
        @media (max-width: 767px) {
            .section { padding: 50px 0 !important; }
            .section-header { margin-bottom: 28px !important; }
            .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem) !important; }
            .section-subtitle { font-size: 0.9rem !important; }
        }

        /* ── CONTAINER MOBILE PADDING ── */
        @media (max-width: 767px) {
            .container { padding: 0 14px !important; }
        }

        /* ── STAFFING STATS MOBILE ── */
        @media (max-width: 767px) {
            .staffing-stats {
                display: grid !important;
                grid-template-columns: 1fr 1fr !important;
                gap: 12px !important;
                padding: 20px 14px !important;
            }
            .staffing-stat-number { font-size: 1.8rem !important; }
        }

        /* ── APP SECTION MOBILE ── */
        @media (max-width: 767px) {
            .app-container {
                flex-direction: column !important;
                gap: 30px !important;
            }
            .app-features-list {
                display: flex !important;
                flex-direction: column !important;
                gap: 12px !important;
            }
            .app-feature {
                padding: 14px !important;
                gap: 12px !important;
            }
            .qr-display { padding: 24px 16px !important; }
            div[style*="margin-left: 15px"] {
                margin-left: 0 !important;
                margin-top: 10px !important;
            }
        }

        /* ── FOOTER MOBILE ── */
        @media (max-width: 767px) {
            .footer-content { grid-template-columns: 1fr !important; gap: 24px !important; }
            .footer-premium { padding: 50px 0 24px !important; }
        }

        /* ── CTA MOBILE ── */
        @media (max-width: 767px) {
            .cta-content { padding: 0 14px; }
            .cta-title { font-size: clamp(1.8rem, 6vw, 2.5rem) !important; }
            .cta-premium { padding: 60px 0 !important; }
            .cta-content > div[style*="display: flex"] {
                flex-direction: column !important;
                gap: 16px !important;
            }
        }

        /* ── WORKFLOW STEPS MOBILE ── */
        @media (max-width: 767px) {
            .workflow-steps {
                display: flex !important;
                flex-direction: row !important;
                overflow-x: auto !important;
                gap: 14px !important;
                padding: 6px 0 20px !important;
                scroll-snap-type: x mandatory !important;
                -webkit-overflow-scrolling: touch !important;
                scrollbar-width: none !important;
            }
            .workflow-steps::-webkit-scrollbar { display: none !important; }
            .workflow-step {
                flex-shrink: 0 !important;
                scroll-snap-align: start !important;
                min-width: min(72vw, 240px) !important;
                max-width: min(72vw, 240px) !important;
            }
        }

        /* ── FORM MOBILE ── */
        @media (max-width: 480px) {
            .registration-form { width: 96% !important; border-radius: 16px !important; }
            .form-buttons { flex-direction: column !important; }
            .form-buttons .btn { width: 100% !important; justify-content: center !important; }
            .otp-container { gap: 6px !important; }
            .otp-input { width: 38px !important; height: 42px !important; font-size: 16px !important; }
            div[style*="display: flex; gap: 10px; align-items: center"] {
                flex-direction: column !important;
                align-items: stretch !important;
            }
        }

        /* ── SWIPE HINT ── */
        .swipe-hint-row {
            display: none;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 12px;
            color: var(--text-light);
            margin: -10px 0 12px;
            letter-spacing: 0.3px;
        }
        @media (max-width: 900px) {
            .swipe-hint-row { display: flex; }
        }
        .swipe-hint-row i {
            animation: swipeAnim 1.5s ease-in-out infinite;
        }
        @keyframes swipeAnim {
            0%, 100% { transform: translateX(0); opacity: 0.5; }
            50% { transform: translateX(6px); opacity: 1; }
        }

        /* ── PLATFORM SCROLL DOTS ── */
        .platforms-scroll-hint { display: none; }
        @media (max-width: 900px) {
            .platforms-scroll-hint {
                display: flex;
                justify-content: center;
                gap: 6px;
                margin: 4px 0 16px;
            }
            .platforms-scroll-hint span {
                width: 6px; height: 6px;
                border-radius: 50%;
                background: var(--border-color);
                transition: all 0.3s ease;
            }
            .platforms-scroll-hint span.active {
                background: var(--primary-color);
                width: 18px;
                border-radius: 3px;
            }
        }

        /* ── DATA SYNC ROW MOBILE ── */
        @media (max-width: 600px) {
            div.sync-row {
                flex-direction: column !important;
                gap: 12px !important;
            }
        }

        /* ── NAV CONTAINER HEIGHT ── */
        .landing-navbar { height: 68px !important; }
        .nav-container { height: 68px !important; padding: 0 20px !important; }

        /* ── CARD PADDING MOBILE ── */
        @media (max-width: 900px) {
            .platform-card,
            .pos-card,
            .staffing-card,
            .verification-card,
            .event-card,
            .vendor-category-card,
            .security-card,
            .service-card,
            .integration-feature,
            .pricing-card-premium,
            .analytics-card,
            .rating-card,
            .supplier-category-card {
                padding: 22px 18px !important;
            }
            .venue-type-card { padding: 24px 16px !important; }
        }

        /* ── FLASH NOTIFICATION MOBILE ── */
        @media (max-width: 767px) {
            .flash-message {
                right: 12px !important;
                left: 12px !important;
                max-width: calc(100vw - 24px) !important;
                padding: 14px 18px !important;
            }
        }

        /* ── REGISTRATION MODAL MOBILE ── */
        @media (max-width: 600px) {
            .registration-form {
                width: 96vw !important;
                max-height: 95vh !important;
                border-radius: 20px !important;
            }
            .form-header { padding: 22px 20px !important; }
            .form-content { padding: 20px 16px !important; }
            .step-indicator { gap: 6px !important; }
        }

        /* ── PREVENT horizontal overflow from inline styles ── */
        @media (max-width: 767px) {
            [style*="display: flex"][style*="gap: 40px"],
            [style*="display: flex"][style*="gap: 60px"],
            [style*="display: flex"][style*="gap: 30px"] {
                flex-wrap: wrap !important;
                gap: 16px !important;
            }
        }

        /* ============================================================
           BYFETE PARTNERS — PREMIUM UI UPGRADE
           ============================================================ */

        /* ── GOOGLE FONTS IMPORT ── */
        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

        /* ── FONT OVERRIDE ── */
        body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif !important; }
        .hero-title, .section-title, h1, h2 { font-family: 'Cormorant Garamond', Georgia, serif !important; }

        /* ── PAGE LOAD ANIMATION ── */
        @keyframes pageReveal {
            from { opacity: 0; transform: translateY(10px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        body { animation: pageReveal 0.6s ease both; }

        /* ── NAVBAR ENHANCED ── */
        .landing-navbar {
            background: rgba(255,255,255,0.96) !important;
            backdrop-filter: blur(28px) saturate(180%) !important;
            -webkit-backdrop-filter: blur(28px) saturate(180%) !important;
            border-bottom: 1px solid rgba(124,58,237,0.08) !important;
            transition: all 0.35s cubic-bezier(0.4,0,0.2,1) !important;
        }
        .landing-navbar.scrolled {
            box-shadow: 0 4px 24px rgba(124,58,237,0.10) !important;
        }
        .nav-logo {
            font-family: 'Cormorant Garamond', serif !important;
            font-size: 22px !important;
            font-weight: 700 !important;
            letter-spacing: 0.01em !important;
            background: linear-gradient(135deg, var(--primary-color) 0%, #9333ea 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .nav-logo i {
            background: linear-gradient(135deg, #C9974A 0%, #f0c060 100%) !important;
            -webkit-background-clip: text !important;
            -webkit-text-fill-color: transparent !important;
            animation: crownSpin 5s ease-in-out infinite !important;
        }
        .nav-link {
            font-size: 13.5px !important;
            font-weight: 500 !important;
            letter-spacing: 0.01em !important;
            border-radius: 8px !important;
            transition: all 0.22s ease !important;
        }
        .nav-link:hover {
            color: var(--primary-color) !important;
            background: rgba(124,58,237,0.07) !important;
            transform: translateY(-1px) !important;
        }
        .btn-luxury {
            font-family: 'DM Sans', sans-serif !important;
            font-weight: 700 !important;
            letter-spacing: 0.01em !important;
            border-radius: 10px !important;
        }

        /* ── HERO SECTION ENHANCED ── */
        .hero {
            background: linear-gradient(135deg, #0d0b1e 0%, #1a0638 40%, #0a1628 100%) !important;
            position: relative !important;
        }
        .hero::after {
            content: '';
            position: absolute;
            inset: 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='%239333ea' fill-opacity='0.03'%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");
            pointer-events: none;
            z-index: 0;
        }
        .hero-tag {
            background: rgba(201,151,74,0.15) !important;
            border: 1px solid rgba(201,151,74,0.3) !important;
            color: #f0c060 !important;
            font-family: 'DM Sans', sans-serif !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            letter-spacing: 0.05em !important;
            padding: 10px 24px !important;
            border-radius: 100px !important;
            backdrop-filter: blur(10px) !important;
        }
        .hero-title {
            font-size: clamp(2.4rem, 5.5vw, 5rem) !important;
            font-weight: 800 !important;
            letter-spacing: -0.02em !important;
            line-height: 1.05 !important;
        }
        .hero-subtitle {
            font-size: clamp(0.95rem, 2vw, 1.15rem) !important;
            line-height: 1.75 !important;
            opacity: 0.75 !important;
            font-weight: 300 !important;
        }
        .stat-number {
            font-family: 'Cormorant Garamond', serif !important;
            font-weight: 800 !important;
            font-size: clamp(2rem, 4vw, 3.5rem) !important;
        }
        .floating-element {
            background: rgba(255,255,255,0.06) !important;
            border: 1px solid rgba(255,255,255,0.1) !important;
            border-radius: 20px !important;
            backdrop-filter: blur(16px) !important;
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }
        .floating-element:hover {
            transform: translateY(-8px) !important;
            box-shadow: 0 20px 40px rgba(124,58,237,0.2) !important;
        }
        .floating-element h4 {
            font-family: 'DM Sans', sans-serif !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            margin: 10px 0 4px !important;
            color: rgba(255,255,255,0.9) !important;
        }
        .floating-element p {
            font-size: 11px !important;
            color: rgba(255,255,255,0.5) !important;
        }

        /* ── SECTION TITLES ── */
        .section-title {
            font-size: clamp(1.8rem, 4vw, 3rem) !important;
            font-weight: 800 !important;
            letter-spacing: -0.01em !important;
            line-height: 1.1 !important;
        }
        .section-subtitle {
            font-size: clamp(0.9rem, 1.8vw, 1.05rem) !important;
            line-height: 1.7 !important;
            color: var(--text-light) !important;
            font-weight: 400 !important;
        }
        .section-tag {
            font-family: 'DM Sans', sans-serif !important;
            font-weight: 600 !important;
            font-size: 12px !important;
            letter-spacing: 0.12em !important;
        }

        /* ── PLATFORM CARDS ── */
        .platform-card {
            border-radius: 20px !important;
            transition: all 0.38s cubic-bezier(0.34,1.56,0.64,1) !important;
            border: 1.5px solid rgba(0,0,0,0.06) !important;
            overflow: hidden !important;
        }
        .platform-card:hover {
            transform: translateY(-10px) scale(1.02) !important;
        }
        .platform-card .platform-icon {
            border-radius: 16px !important;
            transition: transform 0.3s ease !important;
        }
        .platform-card:hover .platform-icon {
            transform: scale(1.08) rotate(-4deg) !important;
        }
        .platform-title {
            font-family: 'Cormorant Garamond', serif !important;
            font-size: 1.4rem !important;
            font-weight: 700 !important;
        }

        /* ── GENERAL CARDS ── */
        .service-card, .venue-type-card, .staffing-card, .event-card,
        .vendor-category-card, .pos-card, .verification-card,
        .security-card, .analytics-card, .rating-card {
            border-radius: 18px !important;
            transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
            border: 1.5px solid rgba(0,0,0,0.06) !important;
        }
        .service-card:hover, .venue-type-card:hover, .staffing-card:hover,
        .event-card:hover, .vendor-category-card:hover, .pos-card:hover,
        .verification-card:hover, .security-card:hover, .analytics-card:hover,
        .rating-card:hover {
            transform: translateY(-8px) scale(1.02) !important;
            box-shadow: 0 20px 50px rgba(0,0,0,0.12) !important;
        }

        /* ── PRICING CARDS ── */
        .pricing-card-premium {
            border-radius: 24px !important;
            transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
        }
        .pricing-card-premium:hover {
            transform: translateY(-12px) scale(1.02) !important;
        }
        .plan-name {
            font-family: 'Cormorant Garamond', serif !important;
            font-size: 1.6rem !important;
            font-weight: 700 !important;
        }

        /* ── BUTTONS ENHANCED ── */
        .btn {
            font-family: 'DM Sans', sans-serif !important;
            font-weight: 600 !important;
            letter-spacing: 0.01em !important;
            border-radius: 12px !important;
            position: relative !important;
            overflow: hidden !important;
            transition: all 0.35s cubic-bezier(0.175,0.885,0.32,1.275) !important;
        }
        .btn:hover {
            transform: translateY(-3px) scale(1.03) !important;
            box-shadow: 0 12px 30px rgba(0,0,0,0.2) !important;
        }
        .btn-luxury {
            background: linear-gradient(135deg, #C9974A 0%, #e8b96a 60%, #C9974A 100%) !important;
            background-size: 200% auto !important;
            animation: goldShimmer 3s linear infinite !important;
            color: #0f1923 !important;
            font-weight: 700 !important;
        }
        @keyframes goldShimmer {
            0% { background-position: 0% center; }
            100% { background-position: 200% center; }
        }
        .btn-outline {
            border-width: 1.5px !important;
            font-weight: 600 !important;
        }

        /* ── SECTION BACKGROUNDS ── */
        .section-light {
            background: linear-gradient(160deg, #ffffff 0%, #f8f6ff 50%, #fff7f0 100%) !important;
        }
        .section-dark {
            background: linear-gradient(135deg, #0d0b1e 0%, #1a0638 100%) !important;
        }

        /* ── FOOTER ENHANCED ── */
        .footer-premium {
            background: linear-gradient(145deg, #07050f 0%, #0f0822 60%, #06101a 100%) !important;
        }
        .footer-logo {
            font-family: 'Cormorant Garamond', serif !important;
            font-size: 1.9rem !important;
            font-weight: 700 !important;
            background: linear-gradient(135deg, #fff 0%, #C9974A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* ── CTA SECTION ── */
        .cta-premium {
            background: linear-gradient(135deg, #0d0b1e 0%, #1a0638 50%, #0a1020 100%) !important;
        }
        .cta-title {
            font-family: 'Cormorant Garamond', serif !important;
            font-size: clamp(2rem, 5vw, 3.8rem) !important;
            font-weight: 800 !important;
            letter-spacing: -0.02em !important;
        }

        /* ── DROPDOWN MENU ── */
        .dropdown-menu {
            border-radius: 16px !important;
            box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 0 0 1px rgba(124,58,237,0.06) !important;
        }
        .dropdown-item {
            font-size: 13.5px !important;
            font-weight: 500 !important;
            transition: all 0.2s ease !important;
        }
        .dropdown-item:hover {
            background: rgba(124,58,237,0.06) !important;
            padding-left: 22px !important;
            color: var(--primary-color) !important;
        }

        /* ── WORKFLOW STEPS ── */
        .workflow-step {
            border-radius: 18px !important;
            transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
        }
        .workflow-step:hover {
            transform: translateY(-8px) !important;
        }

        /* ── INTEGRATION FEATURES ── */
        .integration-feature {
            border-radius: 18px !important;
            transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1) !important;
        }
        .integration-feature:hover {
            transform: translateY(-8px) scale(1.02) !important;
        }

        /* ── SCROLL REVEAL ANIMATION ── */
        .reveal-on-scroll {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
        }
        .reveal-on-scroll.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* ── DRAWER PERFECT FIX ── */
        .mobile-drawer {
            background: #ffffff !important;
            box-shadow: 12px 0 50px rgba(0,0,0,0.22) !important;
        }
        .drawer-header {
            background: linear-gradient(135deg, #0d0b1e 0%, #1a0638 100%) !important;
            padding: 18px 18px 18px 20px !important;
            min-height: 76px !important;
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
        }
        .drawer-logo {
            font-family: 'Cormorant Garamond', serif !important;
            font-size: 18px !important;
            font-weight: 700 !important;
            color: white !important;
            display: flex !important;
            align-items: center !important;
            gap: 10px !important;
            text-decoration: none !important;
            flex: 1 !important;
        }
        .drawer-logo i {
            color: #C9974A !important;
            font-size: 20px !important;
            flex-shrink: 0 !important;
            -webkit-text-fill-color: #C9974A !important;
            background: none !important;
        }
        .drawer-logo .logo-text-wrap {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .drawer-logo .logo-name {
            font-size: 17px;
            font-weight: 800;
            line-height: 1.1;
            color: white;
            font-family: 'Cormorant Garamond', serif;
        }
        .drawer-logo .logo-tag {
            font-size: 9.5px;
            font-weight: 500;
            opacity: 0.6;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #C9974A;
            font-family: 'DM Sans', sans-serif;
        }
        .drawer-close {
            background: rgba(255,255,255,0.12) !important;
            border: 1px solid rgba(255,255,255,0.15) !important;
            width: 34px !important;
            height: 34px !important;
            border-radius: 50% !important;
            flex-shrink: 0 !important;
            transition: background 0.2s, transform 0.2s !important;
        }
        .drawer-close:hover {
            background: rgba(255,255,255,0.22) !important;
            transform: rotate(90deg) !important;
        }
        .drawer-nav-item {
            font-size: 14px !important;
            font-weight: 600 !important;
            padding: 9px 16px !important;
            transition: all 0.22s ease !important;
            border-radius: 0 !important;
        }
        .drawer-nav-item:hover {
            background: rgba(124,58,237,0.06) !important;
            color: var(--primary-color) !important;
            padding-left: 20px !important;
        }
        .drawer-nav-item .ditem-icon {
            border-radius: 8px !important;
            width: 30px !important;
            height: 30px !important;
        }
        .drawer-subitem {
            font-size: 13px !important;
            transition: all 0.2s ease !important;
        }
        .drawer-footer {
            flex-shrink: 0 !important;
            padding: 12px 16px 16px !important;
            border-top: 1px solid rgba(0,0,0,0.08) !important;
            background: white !important;
            box-shadow: 0 -6px 24px rgba(0,0,0,0.10) !important;
        }
        .drawer-footer .btn {
            border-radius: 10px !important;
            font-size: 14px !important;
        }

        /* ── REGISTRATION MODAL ── */
        .registration-form {
            border-radius: 24px !important;
        }
        .form-input {
            border-radius: 10px !important;
            font-size: 14.5px !important;
            font-family: 'DM Sans', sans-serif !important;
        }
        .form-input:focus {
            border-color: var(--primary-color) !important;
            box-shadow: 0 0 0 3px rgba(124,58,237,0.10) !important;
        }

        /* ── MOBILE OVERLAY ── */
        .mobile-overlay {
            backdrop-filter: blur(6px) !important;
            background: rgba(0,0,0,0.5) !important;
        }

        /* ── ENTRY ANIMATION FOR DRAWER ITEMS ── */
        .mobile-drawer.active .drawer-nav-item {
            animation: slideRight 0.35s cubic-bezier(0.4,0,0.2,1) both !important;
        }
        @keyframes slideRight {
            from { opacity:0; transform:translateX(-20px); }
            to   { opacity:1; transform:translateX(0); }
        }

        /* ── NOTIFICATION TOAST ── */
        .flash-message {
            border-radius: 14px !important;
            font-family: 'DM Sans', sans-serif !important;
            font-size: 14.5px !important;
            box-shadow: 0 20px 50px rgba(0,0,0,0.18) !important;
            border-left: 4px solid var(--primary-color) !important;
            animation: toastIn 0.4s cubic-bezier(0.34,1.56,0.64,1) !important;
        }
        @keyframes toastIn {
            from { opacity:0; transform:translateX(60px) scale(0.9); }
            to   { opacity:1; transform:translateX(0) scale(1); }
        }
        .flash-message.success { border-left-color: #10b981 !important; }
        .flash-message.error   { border-left-color: #ef4444 !important; }

        /* ── SMOOTH SCROLL PROGRESS ── */
        .scroll-progress-bar {
            position: fixed;
            top: 0; left: 0;
            height: 3px;
            background: linear-gradient(90deg, #7c3aed, #C9974A, #10b981);
            z-index: 9999;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* ── HERO BUTTONS ENHANCED ── */
        #heroRegisterBtn {
            box-shadow: 0 8px 30px rgba(201,151,74,0.4) !important;
        }
        #heroRegisterBtn:hover {
            box-shadow: 0 14px 40px rgba(201,151,74,0.5) !important;
        }
        
        
    .geofencing-step-wrapper {
        width: 100%;
        background: #f7f7f7;
        border-radius: 18px;
        padding: 22px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    }

    .geofencing-step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        min-width: 150px;
    }

    .geofencing-step-circle {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: #d9d9d9;
        color: #4a4a4a;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 8px;
    }

    .geofencing-step-text {
        font-size: 14px;
        font-weight: 500;
        color: #1e293b;
        text-align: center;
        line-height: 1.4;
    }

    /* Active Step */
    .geofencing-step-item.active .geofencing-step-circle {
        background: #10b981;
        color: #fff;
    }

    /* Current Step */
    .geofencing-step-item.current .geofencing-step-circle {
        background: #7c3aed;
        color: #fff;
    }

    .geofencing-step-line {
        flex: 1;
        height: 1px;
        background: #dcdcdc;
        margin-top: -22px;
    }

    /* Responsive */

    @media(max-width: 768px) {

        .geofencing-step-wrapper {
            flex-direction: column;
            gap: 20px;
            padding: 20px;
        }

        .geofencing-step-line {
            width: 1px;
            height: 35px;
            margin-top: 0;
        }

        .geofencing-step-text {
            font-size: 13px;
        }

    }

    .geofencing-zone-layout {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 18px;
        margin-top: 22px;
        margin-bottom: 30px;
    }

    /* =========================================
   Sidebar
========================================= */

    .geofencing-zone-sidebar {
        background: #ffffff;
        border-radius: 18px;
        padding: 20px;
        box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
        height: fit-content;
    }

    .geofencing-sidebar-title {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 18px;
    }

    .geofencing-sidebar-title i {
        color: #7c3aed;
        font-size: 18px;
    }

    .geofencing-sidebar-title h4 {
        margin: 0;
        font-size: 18px;
        line-height: 1.3;
        font-weight: 700;
        color: #111827;
    }

    .geofencing-venue-alert {
        background: #f5f6f8;
        border-radius: 14px;
        padding: 14px;
        margin-bottom: 30px;
    }

    .geofencing-venue-alert h5 {
        margin-bottom: 6px;
        font-size: 15px;
        font-weight: 700;
    }

    .geofencing-venue-alert p {
        margin: 0;
        color: #6b7280;
        line-height: 1.5;
        font-size: 13px;
    }

    .geofencing-empty-zone {
        text-align: center;
        padding: 20px 10px;
    }

    .geofencing-empty-zone i {
        font-size: 42px;
        color: #6b7280;
        margin-bottom: 14px;
    }

    .geofencing-empty-zone h4 {
        font-size: 16px;
        margin-bottom: 6px;
        font-weight: 700;
    }

    .geofencing-empty-zone p {
        color: #6b7280;
        margin: 0;
        font-size: 13px;
    }

    /* =========================================
   Right Content
========================================= */

    .geofencing-zone-content {
        background: #ffffff;
        border-radius: 18px;
        padding: 22px;
        box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
    }

    .geofencing-zone-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

    .geofencing-zone-header i {
        color: #7c3aed;
        font-size: 18px;
    }

    .geofencing-zone-header h4 {
        margin: 0;
        font-size: 22px;
        font-weight: 700;
    }

    /* =========================================
   Form
========================================= */

    .geofencing-form-group {
        margin-bottom: 18px;
    }

    .geofencing-form-group label {
        display: block;
        margin-bottom: 8px;
        font-size: 14px;
        font-weight: 600;
        color: #111827;
    }

    .geofencing-form-group input,
    .geofencing-form-group select,
    .geofencing-form-group textarea {
        width: 100%;
        border: 1px solid #d1d5db;
        border-radius: 12px;
        padding: 12px 14px;
        font-size: 13px;
        outline: none;
        transition: 0.3s;
        background: #fff;
    }

    .geofencing-form-group input:focus,
    .geofencing-form-group select:focus,
    .geofencing-form-group textarea:focus {
        border-color: #7c3aed;
        box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.10);
    }

    .geofencing-form-group textarea {
        height: 100px;
        resize: none;
    }

    /* =========================================
   Zone Type Grid
========================================= */

    .geofencing-zone-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .geofencing-zone-card {
        border: 1px solid #d8dbe1;
        border-radius: 14px;
        padding: 16px 10px;
        text-align: center;
        cursor: pointer;
        transition: 0.3s;
        background: #fff;
    }

    .geofencing-zone-card:hover {
        border-color: #7c3aed;
        transform: translateY(-2px);
    }

    .geofencing-zone-card i {
        font-size: 22px;
        margin-bottom: 10px;
        display: block;
        color: #7c3aed;
    }

    .geofencing-zone-card span {
        font-size: 13px;
        font-weight: 600;
    }

    .geofencing-zone-card.selected {
        background: rgba(124, 58, 237, 0.08);
        border-color: #7c3aed;
    }

    /* =========================================
   Color Select
========================================= */

    .geofencing-color-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .geofencing-color-preview {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: #7c3aed;
    }

    /* =========================================
   Access Type
========================================= */

    .geofencing-access-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .geofencing-access-card {
        border-radius: 12px;
        background: #f4f4f5;
        padding: 14px;
        text-align: center;
        cursor: pointer;
        font-weight: 600;
        font-size: 13px;
        transition: 0.3s;
        border: 1px solid transparent;
    }

    .geofencing-access-card.active {
        background: rgba(124, 58, 237, 0.08);
        color: #7c3aed;
        border-color: #7c3aed;
    }

    .geofencing-access-card i {
        margin-right: 6px;
    }

    /* =========================================
   Checkbox
========================================= */

    .geofencing-checkbox {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 18px;
    }

    .geofencing-checkbox label {
        font-size: 13px;
        font-weight: 600;
    }

    .geofencing-checkbox input {
        width: 15px;
        height: 15px;
    }

    /* =========================================
   Action Buttons
========================================= */

    .geofencing-action-buttons {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 22px;
    }

    .geofencing-update-btn,
    .geofencing-delete-btn,
    .geofencing-map-btn {
        border: none;
        padding: 13px 16px;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        color: #fff;
    }

    .geofencing-update-btn {
        background: linear-gradient(to right, #7c3aed, #8b5cf6);
    }

    .geofencing-delete-btn {
        background: #ef4444;
    }

    .geofencing-map-btn {
        background: #f59e0b;
    }

    .geofencing-update-btn:hover,
    .geofencing-delete-btn:hover,
    .geofencing-map-btn:hover {
        transform: translateY(-2px);
    }

    /* =========================================
   Responsive
========================================= */

    @media(max-width: 1200px) {

        .geofencing-zone-grid {
            grid-template-columns: repeat(2, 1fr);
        }

    }

    @media(max-width: 991px) {

        .geofencing-zone-layout {
            grid-template-columns: 1fr;
        }

    }

    @media(max-width: 767px) {

        .geofencing-zone-content,
        .geofencing-zone-sidebar {
            padding: 16px;
            border-radius: 14px;
        }

        .geofencing-zone-grid {
            grid-template-columns: 1fr 1fr;
        }

        .geofencing-access-grid {
            grid-template-columns: 1fr;
        }

        .geofencing-action-buttons {
            grid-template-columns: 1fr;
        }

        .geofencing-zone-header h4,
        .geofencing-sidebar-title h4 {
            font-size: 18px;
        }

    }

    @media(max-width: 480px) {

        .geofencing-zone-grid {
            grid-template-columns: 1fr;
        }

    }

    .geofencing-map-wrapper {
        width: 100%;
        margin-top: 24px;
    }

    /* =========================================
   MAP AREA
========================================= */

    .geofencing-map-area {
        position: relative;
        width: 100%;
        height: 650px;
        border-radius: 22px;
        overflow: hidden;
        background: #e5e7eb;
        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    }

    /* =========================================
   REAL MAP
========================================= */

    #geofencingMap {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 1;
    }

    /* =========================================
   TOP BAR INSIDE MAP
========================================= */

    .geofencing-map-topbar {
        position: absolute;
        top: 18px;
        left: 18px;
        right: 18px;

        z-index: 999;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    /* =========================================
   SEARCH BOX
========================================= */

    .geofencing-search-box {
        flex: 1;
        height: 54px;

        background: rgba(255, 255, 255, 0.97);

        border-radius: 14px;

        padding: 0 16px;

        display: flex;
        align-items: center;
        gap: 12px;

        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    .geofencing-search-box i {
        font-size: 15px;
        color: #6b7280;
    }

    .geofencing-search-box input {
        flex: 1;

        border: none;
        outline: none;
        background: transparent;

        font-size: 14px;
        color: #111827;
    }

    /* Search Button */

    .geofencing-search-btn {
        border: none;
        background: #7c3aed;
        color: #fff;

        height: 38px;
        padding: 0 16px;

        border-radius: 10px;

        display: flex;
        align-items: center;
        gap: 8px;

        font-size: 13px;
        font-weight: 600;

        cursor: pointer;
        transition: 0.3s;
    }

    .geofencing-search-btn:hover {
        background: #6d28d9;
    }

    /* =========================================
   RIGHT BUTTONS
========================================= */

    .geofencing-topbar-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .geofencing-location-btn,
    .geofencing-clear-btn {
        border: none;

        height: 54px;

        padding: 0 18px;

        border-radius: 14px;

        display: flex;
        align-items: center;
        gap: 8px;

        font-size: 14px;
        font-weight: 600;

        cursor: pointer;
        transition: 0.3s;

        white-space: nowrap;
    }

    /* Location Button */

    .geofencing-location-btn {
        background: rgba(255, 255, 255, 0.97);
        color: #111827;

        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    .geofencing-location-btn:hover {
        transform: translateY(-2px);
    }

    /* Clear Button */

    .geofencing-clear-btn {
        background: #ef4444;
        color: #fff;
    }

    .geofencing-clear-btn:hover {
        background: #dc2626;
    }

    /* =========================================
   MAP CONTROLS
========================================= */

    .geofencing-map-controls {
        position: absolute;

        bottom: 22px;
        left: 50%;

        transform: translateX(-50%);

        z-index: 999;

        background: rgba(255, 255, 255, 0.96);

        padding: 10px;

        border-radius: 16px;

        display: flex;
        align-items: center;
        gap: 10px;

        box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    }

    .geofencing-draw-btn {
        border: 1px solid #d1d5db;
        background: #fff;

        padding: 12px 18px;

        border-radius: 12px;

        display: flex;
        align-items: center;
        gap: 8px;

        font-size: 13px;
        font-weight: 600;

        cursor: pointer;
        transition: 0.3s;
    }

    .geofencing-draw-btn:hover {
        background: #f9fafb;
    }

    .geofencing-draw-btn.active {
        background: rgba(124, 58, 237, 0.08);
        border-color: #7c3aed;
        color: #7c3aed;
    }

    /* =========================================
   BOTTOM BAR
========================================= */

    .geofencing-bottom-bar {
        margin-top: 18px;

        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;

        flex-wrap: wrap;
    }

    .geofencing-bottom-left {
        display: flex;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }

    /* Buttons */

    .geofencing-save-btn,
    .geofencing-sample-btn,
    .geofencing-export-btn {
        border: none;

        padding: 12px 18px;

        border-radius: 12px;

        display: flex;
        align-items: center;
        gap: 8px;

        font-size: 13px;
        font-weight: 600;

        cursor: pointer;
        transition: 0.3s;
    }

    .geofencing-save-btn {
        background: #10b981;
        color: #fff;
    }

    .geofencing-save-btn:hover {
        background: #059669;
    }

    .geofencing-sample-btn {
        background: #fff;
        color: #111827;
        border: 1px solid #d1d5db;
    }

    .geofencing-export-btn {
        background: #f59e0b;
        color: #fff;
    }

    .geofencing-export-btn:hover {
        background: #d97706;
    }

    /* =========================================
   STATUS BOX
========================================= */

    .geofencing-status-box {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .geofencing-status-box span {
        padding: 7px 12px;
        border-radius: 8px;

        font-size: 12px;
        font-weight: 600;
    }

    .venue-status {
        background: #fee2e2;
        color: #dc2626;
    }

    .zone-status {
        background: #ede9fe;
        color: #7c3aed;
    }

    /* =========================================
   TABLET RESPONSIVE
========================================= */

    @media(max-width: 991px) {

        .geofencing-map-area {
            height: 560px;
        }

        .geofencing-map-topbar {
            flex-direction: column;
            align-items: stretch;
        }

        .geofencing-topbar-actions {
            width: 100%;
        }

        .geofencing-location-btn,
        .geofencing-clear-btn {
            flex: 1;
            justify-content: center;
        }

    }

    /* =========================================
   MOBILE RESPONSIVE
========================================= */

    @media(max-width: 767px) {

        .geofencing-map-area {
            height: 500px;
            border-radius: 16px;
        }

        .geofencing-map-topbar {
            top: 12px;
            left: 12px;
            right: 12px;
        }

        /* Search */

        .geofencing-search-box {
            height: auto;
            padding: 12px;
            flex-wrap: wrap;
        }

        .geofencing-search-box input {
            width: 100%;
        }

        .geofencing-search-btn {
            width: 100%;
            justify-content: center;
            height: 44px;
        }

        /* Top Buttons */

        .geofencing-topbar-actions {
            flex-direction: column;
        }

        .geofencing-location-btn,
        .geofencing-clear-btn {
            width: 100%;
            height: 46px;
            justify-content: center;
        }

        /* Draw Controls */

        .geofencing-map-controls {
            width: calc(100% - 24px);

            flex-direction: column;

            bottom: 14px;
        }

        .geofencing-draw-btn {
            width: 100%;
            justify-content: center;
        }

        /* Bottom Buttons */

        .geofencing-bottom-bar {
            flex-direction: column;
            align-items: stretch;
        }

        .geofencing-bottom-left {
            width: 100%;
            flex-direction: column;
        }

        .geofencing-save-btn,
        .geofencing-sample-btn,
        .geofencing-export-btn {
            width: 100%;
            justify-content: center;
        }

        .geofencing-status-box {
            justify-content: center;
        }

    }