        /* Navigation Bar - IMPROVED COLOR & VISIBILITY */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            background: rgba(30, 65, 12, 0.97);
            backdrop-filter: blur(14px);
            box-shadow: 0 2px 24px rgba(0,0,0,0.22);
            transition: all 0.4s ease;
            opacity: 1;
            transform: translateY(0);
        }
        .navbar.visible { opacity: 1; transform: translateY(0); }
        .navbar.scrolled {
            background: rgba(30, 65, 12, 0.99);
            box-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }
        
        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.85rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
        }
        
        .navbar-logo {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            text-decoration: none;
            font-family: 'Archivo Black', sans-serif;
            font-size: 1.5rem;
            color: white;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .navbar.scrolled .navbar-logo {
            color: white;
        }
        
        .navbar-logo:hover {
            transform: scale(1.05);
        }
        
        .logo-icon {
            width: 38px;
            height: 38px;
            background: linear-gradient(135deg, var(--accent-gold), #f0c040);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }
        
        .navbar-menu {
            display: flex;
            align-items: center;
            gap: 1.4rem;
            list-style: none;
            margin: 0;
            flex: 1;
            justify-content: center;
        }
        
        .navbar-logo-img {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            flex-shrink: 0;
        }

        .navbar-menu a {
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 0.85rem;
            position: relative;
            transition: color 0.3s ease;
            white-space: nowrap;
            display: inline-flex;
            align-items: center;
            gap: 0.45rem;
        }

        .navbar-menu a i {
            display: none;
            font-size: 1.05rem;
            color: var(--accent-gold);
            flex-shrink: 0;
        }

        .navbar-menu-header,
        .navbar-menu-footer { display: none; }

        .btn-label-mobile { display: none; }
        
        .navbar-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }
        
        .navbar-menu a:hover {
            color: var(--accent-gold);
        }
        
        .navbar-menu a:hover::after {
            width: 100%;
        }
        
        .navbar-actions {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            flex-shrink: 0;
        }
        
        .sign-in-btn {
            padding: 0.7rem 1.8rem;
            background: var(--accent-gold);
            color: var(--dark-slate);
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .sign-in-btn:hover {
            background: white;
            color: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(232, 168, 56, 0.3);
        }
        
        /* Portal Dropdown */
        .portal-dropdown { position: relative; }
        .portal-dropdown-btn {
            padding: 0.55rem 1.1rem;
            background: var(--accent-gold);
            color: var(--dark-slate);
            border: none; border-radius: 50px;
            font-weight: 700; font-size: 0.82rem;
            cursor: pointer; display: inline-flex;
            align-items: center; gap: 0.4rem;
            transition: all 0.3s ease;
            white-space: nowrap;
        }
        .portal-dropdown-btn:hover { background: #f5b830; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,168,56,0.4); }
        .register-dropdown-btn {
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(232,168,56,0.65);
            color: white;
        }
        .register-dropdown-btn:hover {
            background: var(--accent-gold);
            color: var(--dark-slate);
            border-color: var(--accent-gold);
        }
        .portal-dropdown-btn .dd-arrow { font-size: 0.65rem; transition: transform 0.3s ease; }
        .portal-dropdown:hover .dd-arrow { transform: rotate(180deg); }
        .pmm-grid-register { grid-template-columns: repeat(3, 1fr); }
        .portal-mega-menu {
            position: absolute; top: calc(100% + 10px); right: 0;
            background: white; border-radius: 22px;
            box-shadow: 0 24px 70px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.04);
            min-width: 420px; opacity: 0; visibility: hidden;
            transform: translateY(-6px) scale(0.97);
            transition: all 0.22s cubic-bezier(.34,1.56,.64,1);
            z-index: 1002; overflow: hidden;
        }
        .portal-dropdown:hover .portal-mega-menu { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
        .pmm-header {
            padding: 1.1rem 1.5rem;
            background: linear-gradient(135deg, #1a3010, var(--primary-green));
            display: flex; align-items: center; justify-content: space-between;
        }
        .pmm-header-title { font-weight: 800; color: white; font-size: 0.95rem; letter-spacing: 0.2px; }
        .pmm-header-sub { font-size: 0.72rem; color: rgba(255,255,255,0.6); margin-top:2px; }
        .pmm-header-badge { background:rgba(232,168,56,0.2); border:1px solid rgba(232,168,56,0.4); border-radius:50px; padding:0.2rem 0.7rem; font-size:0.68rem; color:var(--accent-gold); font-weight:700; }
        .pmm-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; padding: 0.8rem; }
        .pmm-item {
            display: flex; flex-direction: column; align-items: center; text-align: center;
            gap: 0.5rem; padding: 0.9rem 0.5rem; border-radius: 14px;
            text-decoration: none; color: var(--dark-slate);
            transition: all 0.2s ease; cursor: pointer; border: none; background: none;
            width: 100%; font-family: 'Manrope', sans-serif;
        }
        .pmm-item:hover { background: #fff8ed; transform: translateY(-2px); }
        .pmm-icon {
            width: 44px; height: 44px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            font-size: 1.1rem; flex-shrink: 0;
        }
        .pmm-label { font-weight: 800; font-size: 0.78rem; color: #1a1a1a; line-height: 1.2; }
        .pmm-sub { font-size: 0.65rem; color: #999; line-height: 1.3; }
        .pmm-footer {
            padding: 0.65rem 1.5rem;
            background: #f8faf6;
            border-top: 1px solid rgba(45,80,22,0.08);
            font-size: 0.71rem; color: #999;
            display: flex; align-items: center; gap: 0.4rem;
        }
        .dropdown-arrow { font-size: 0.65rem; transition: transform 0.3s ease; }
        .sign-in-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
        
        .mobile-menu-toggle {
            display: none;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
            width: 38px;
            height: 38px;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: background 0.2s;
        }
        .mobile-menu-toggle:hover { background: rgba(255,255,255,0.18); }
        
        /* Mobile Menu */
        @media (max-width: 992px) {
            .navbar-container {
                padding: 0.65rem 0.75rem;
                gap: 0.35rem;
                justify-content: space-between;
            }
            .navbar-logo {
                font-size: 1.05rem;
                gap: 0.45rem;
                min-width: 0;
                flex-shrink: 0;
            }
            .navbar-logo-img {
                width: 32px;
                height: 32px;
            }
            .navbar-actions {
                flex: 1;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 0.35rem;
                margin-left: 0.5rem;
                min-width: 0;
            }
            .portal-dropdown-btn .btn-label-desktop { display: none !important; }
            .portal-dropdown-btn .btn-label-mobile {
                display: inline;
                font-size: 0.72rem;
                font-weight: 800;
                letter-spacing: 0.01em;
            }
            .portal-dropdown-btn .btn-icon,
            .portal-dropdown-btn .dd-arrow { display: none; }
            .navbar-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: min(88vw, 320px);
                height: 100vh;
                height: 100dvh;
                background: linear-gradient(180deg, #1a3010 0%, #142608 100%);
                display: flex;
                flex: none;
                flex-direction: column;
                padding: 0;
                gap: 0;
                transition: left 0.32s cubic-bezier(0.4,0,0.2,1);
                box-shadow: 8px 0 40px rgba(0,0,0,0.45);
                align-items: stretch;
                justify-content: flex-start;
                overflow-y: auto;
                overflow-x: hidden;
                z-index: 1001;
            }
            .navbar-menu-header {
                display: block;
                padding: 1.1rem 1.25rem;
                border-bottom: 1px solid rgba(232,168,56,0.18);
                background: rgba(0,0,0,0.2);
                flex-shrink: 0;
            }
            .sidebar-header-inner {
                display: flex;
                align-items: center;
                gap: 0.65rem;
                font-family: 'Archivo Black', sans-serif;
                font-size: 1.25rem;
                color: #fff;
                letter-spacing: 0.5px;
            }
            .sidebar-header-inner img { border-radius: 10px; }
            .navbar-menu li { width: 100%; list-style: none; }
            .navbar-menu li:not(.navbar-menu-footer):not(.navbar-menu-header) {
                padding: 0 0.85rem;
            }
            .navbar-menu-header + li {
                padding-top: 0.5rem;
            }
            .navbar-menu a {
                display: flex;
                align-items: center;
                gap: 0.85rem;
                padding: 0.95rem 0.85rem;
                width: 100%;
                border-radius: 12px;
                color: rgba(255,255,255,0.9);
                font-size: 0.95rem;
                font-weight: 600;
                border-bottom: none;
                transition: background 0.2s, color 0.2s, transform 0.2s;
            }
            .navbar-menu a i {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 36px;
                height: 36px;
                border-radius: 10px;
                background: rgba(232,168,56,0.12);
                font-size: 1rem;
                color: var(--accent-gold);
            }
            .navbar-menu a:hover,
            .navbar-menu a:focus {
                background: rgba(255,255,255,0.08);
                color: #fff;
                transform: translateX(3px);
            }
            .navbar-menu a::after { display: none; }
            .navbar-menu.active { left: 0; }
            .navbar-menu-footer {
                display: block;
                margin-top: auto;
                padding: 1.1rem 1.25rem 1.4rem;
                border-top: 1px solid rgba(232,168,56,0.15);
                background: rgba(0,0,0,0.22);
            }
            .sidebar-footer-inner { text-align: center; }
            .sidebar-footer-inner p {
                margin: 0;
                font-size: 0.78rem;
                color: rgba(255,255,255,0.5);
                line-height: 1.5;
            }
            .sidebar-footer-inner strong {
                color: var(--accent-gold);
                font-weight: 800;
            }
            .mobile-menu-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                width: 36px;
                height: 36px;
                font-size: 1.35rem;
            }
            .portal-dropdown {
                flex: 1;
                display: flex;
                justify-content: center;
            }
            .portal-dropdown-btn {
                padding: 0.42rem 0.55rem;
                border-radius: 50px;
                width: 100%;
                justify-content: center;
                min-width: 0;
            }
            .register-dropdown-btn {
                padding: 0.42rem 0.6rem;
            }
            .portal-dropdown.is-open .portal-mega-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0) scale(1);
            }
            .portal-dropdown.is-open .dd-arrow { transform: rotate(180deg); }
            .pmm-grid-register { grid-template-columns: 1fr 1fr; }
            .portal-mega-menu {
                position: fixed;
                top: 64px;
                right: 0;
                left: 0;
                min-width: unset;
                width: 100%;
                max-height: calc(100vh - 64px);
                max-height: calc(100dvh - 64px);
                overflow-y: auto;
                border-radius: 0 0 20px 20px;
            }
            .pmm-grid { grid-template-columns: 1fr 1fr 1fr; }
        }
        @media (max-width: 480px) {
            .pmm-grid { grid-template-columns: 1fr 1fr; }
            .navbar-logo { font-size: 0.95rem; }
            .navbar-logo-img { width: 30px; height: 30px; }
            .portal-dropdown-btn .btn-label-mobile { font-size: 0.68rem; }
            .logo-icon { width: 34px; height: 34px; font-size: 1rem; border-radius: 8px; }
        }
        
        /* Mobile menu overlay */
        .mobile-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 998;
            backdrop-filter: blur(2px);
        }
        .mobile-overlay.active { display: block; }

        /* Chatbot Button - IMPROVED Z-INDEX */
        .chatbot-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, var(--accent-gold), var(--harvest-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 30px rgba(232, 168, 56, 0.4);
            cursor: pointer;
            z-index: 998;
            transition: all 0.3s ease;
            border: none;
        }
        
        .chatbot-button:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 12px 40px rgba(232, 168, 56, 0.6);
        }
        
        .chatbot-button i {
            font-size: 1.8rem;
            color: white;
        }
        
        .chatbot-pulse {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: var(--accent-gold);
            animation: pulse-ring 2s ease-out infinite;
        }
        
        @keyframes pulse-ring {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }
            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }
        
        /* Chat Panel - IMPROVED RESPONSIVE */
        .chat-panel {
            position: fixed;
            bottom: 110px;
            right: 30px;
            width: 380px;
            max-width: calc(100vw - 60px);
            height: 550px;
            max-height: calc(100vh - 150px);
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            z-index: 997;
            display: none;
            flex-direction: column;
            overflow: hidden;
            animation: slideUp 0.3s ease-out;
        }
        
        .chat-panel.active {
            display: flex;
        }
        
        @keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .chat-panel {
                bottom: 90px;
                right: 20px;
                left: 20px;
                width: auto;
                max-width: none;
                height: 500px;
                max-height: calc(100vh - 120px);
            }
        }
        
        @media (max-width: 576px) {
            .chat-panel {
                bottom: 80px;
                right: 10px;
                left: 10px;
                height: 450px;
                max-height: calc(100vh - 100px);
                border-radius: 15px;
            }
            
            .chatbot-button {
                width: 60px;
                height: 60px;
                bottom: 20px;
                right: 20px;
            }
            
            .chatbot-button i {
                font-size: 1.5rem;
            }
            
            .chat-panel {
                bottom: 90px;
                right: 20px;
                width: calc(100vw - 40px);
                height: calc(100vh - 120px);
                max-height: 600px;
            }
        }
        
        .chat-header {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
            color: white;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .chat-header-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .chat-avatar {
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-green);
            font-size: 1.3rem;
        }
        
        .chat-title {
            font-weight: 700;
            font-size: 1.1rem;
            margin: 0;
        }
        
        .chat-status {
            font-size: 0.75rem;
            opacity: 0.9;
        }
        
        .chat-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .chat-close:hover {
            transform: rotate(90deg);
        }
        
        .chat-body {
            flex: 1;
            padding: 2rem;
            overflow-y: auto;
            background: var(--cream);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .chat-coming-soon {
            text-align: center;
        }
        
        .chat-coming-soon-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, var(--accent-gold), var(--harvest-orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2.5rem;
        }
        
        .chat-coming-soon h3 {
            color: var(--primary-green);
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .chat-coming-soon p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
        
        .chat-notify-btn {
            padding: 0.8rem 2rem;
            background: var(--primary-green);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .chat-notify-btn:hover {
            background: var(--accent-gold);
            color: var(--dark-slate);
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(232, 168, 56, 0.3);
        }
        

        /* Footer */
        .footer {
            background: var(--dark-slate);
            color: rgba(255, 255, 255, 0.7);
            padding: 3rem 0 2rem;
        }
        
        .footer-content {
            padding-bottom: 0;
            margin-bottom: 0;
        }
        
        .footer-logo {
            color: var(--accent-gold);
            font-weight: 800;
            font-size: 1.5rem;
            font-family: 'Archivo Black', sans-serif;
        }
        
        .footer-text {
            font-size: 0.9rem;
            margin-top: 1rem;
            max-width: 300px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--accent-gold);
        }
        
        .footer-bottom {
            text-align: center;
            font-size: 0.85rem;
        }
        
        .footer-logo-text {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
        }
        
