/* --- NEW & IMPROVED DESIGN SYSTEM --- */
        :root {
            /* Updated color palette to match style.css */
            --primary-color: #FF3528; /* Red from style.css */
            --primary-dark: #EC4119; /* Darker red */
            --secondary-color: #07102C; /* Dark blue */
            --accent-color: #FF3528; /* Same as primary */
            --dark-color: #07102C; /* Very dark blue */
            --light-color: #FFFFFF; /* Pure white */
            --gray-color: #000000; /* Black for text */
            --body-color: #475569; /* Slate for body text */
            --border-color: #e2e8f0; /* Light gray borders */
            --danger-color: #FF3528;
            --success-color: #07102C;
            --warning-color: #EC4119;
            --info-color: #FF3528;
            --white: #FFFFFF;

            /* Effects */
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-glow: 0 0 20px rgba(255, 53, 40, 0.5); /* Red glow */
            --border-radius-sm: 6px;
            --border-radius-md: 8px;
            --border-radius-lg: 12px;
            --gradient-main: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);

            /* Fonts */
            --font-primary: 'Poppins', sans-serif;
            --font-secondary: 'Montserrat', sans-serif;
        }

        /* Basic Reset */
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-primary);
            line-height: 1.6;
            background-color: var(--light-color);
            color: var(--body-color);
            -webkit-font-smoothing: antialiased;
        }
        
        /* Ensure all button-styled links have no underlines */
        a.btn,
        a.btn:hover,
        a.btn:focus,
        a.btn:active,
        a.btn:visited {
            text-decoration: none !important;
        }

        /* Container */
        .container { width: 90%; max-width: 1200px; margin: 0 auto; }

        /* Buttons - Updated to match style.css */
        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s;
            cursor: pointer;
            text-align: center;
            border: none;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-decoration: none;
        }
        .btn:hover,
        .btn:focus,
        .btn:active,
        .btn:visited {
            text-decoration: none;
        }
        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .btn-primary:hover {
            color: var(--white) !important;
            transform: translateY(-2px);
            box-shadow: 0 7px 20px rgba(0,0,0,0.3);
        }
        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        .btn-secondary:hover {
            background: var(--white);
            color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }
        .btn-outline:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-2px);
        }
        .btn-lg { padding: 15px 35px; font-size: 1.1rem; }

        /* Forms */
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark-color);
        }
        .form-group input[type="text"],
        .form-group input[type="email"],
        .form-group textarea,
        .form-group select,
        .form-group input[type="number"] {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            font-family: var(--font-primary);
            font-size: 1rem;
            color: var(--dark-color);
            transition: border-color 0.3s;
        }
        .form-group input[type="text"]:focus,
        .form-group input[type="email"]:focus,
        .form-group textarea:focus,
        .form-group select:focus,
        .form-group input[type="number"]:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        .form-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            border: 1px solid var(--border-color);
            max-width: 600px;
            margin: 40px auto;
        }
        /* Style for dynamic fields container */
        #dynamic-fields {
            margin-top: 25px;
            padding-top: 20px;
            border-top: 1px dashed var(--border-color);
        }


        /* Messages/Modals */
        .message-box {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: var(--dark-color);
            color: white;
            padding: 20px 30px;
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-lg);
            z-index: 10000;
            text-align: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .message-box.show {
            opacity: 1;
            visibility: visible;
        }
        .message-box button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: var(--border-radius-md);
            margin-top: 15px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s ease;
        }
        .message-box button:hover {
            background-color: var(--primary-dark);
        }

        /* Loading Spinner */
        #loading-overlay {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background-color: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
            z-index: 9998; /* Below message box, above content */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        #loading-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        .spinner {
            border: 4px solid rgba(0, 0, 0, 0.1);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border-left-color: var(--primary-color);
            animation: spin 1s ease infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* --- HOME PAGE STYLES --- */

        /* Header - Updated to match style.css modern design */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 0;
            z-index: 1000;
            transition: background-color 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
            background-color: transparent;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: none;
        }
        .header.scrolled {
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            padding: 10px 0;
        }
        .main-nav { 
            display: flex; 
            justify-content: space-between; 
            align-items: center; 
        }
        .logo img { 
            height: 50px; 
            transition: height 0.4s ease, opacity 0.3s ease; 
        }
        .header.scrolled .logo img { 
            height: 40px; 
        }
        /* Logo fade transition */
        .logo-fade {
            opacity: 0;
        }
        .mobile-menu-btn { 
            display: none; 
            background: none; 
            border: none; 
            font-size: 1.5rem; 
            cursor: pointer; 
            color: var(--dark-color); 
        }

        /* New Dynamic Hero Section - Updated to match style.css */
        .hero-section {
            position: relative;
            padding: 180px 0 120px;
            text-align: center;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        /* Video Background Styles */
        .video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1; /* Behind content */
        }
        .video-background video {
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            object-fit: cover; /* Ensures the video covers the entire area */
        }
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
            z-index: 2; /* Between video and content */
        }

        .hero-content {
            position: relative;
            z-index: 3; /* Above video and overlay */
            color: white; /* Ensure text is visible over dark overlay */
            max-width: 800px;
            width: 100%;
            text-align: center;
            margin: 0 auto;
            padding: 0 20px;
        }
        .hero-content h1 {
            font-size: 4.5rem;
            font-family: var(--font-secondary);
            color: white; /* Changed to white for better contrast */
            margin-bottom: 30px;
            line-height: 1.1;
            font-weight: 700;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
            letter-spacing: -1px;
        }
        .hero-content p { 
            font-size: 1.3rem; 
            color: rgba(255,255,255,0.9); /* Lighter color for description */
            max-width: 700px; 
            margin: 0 auto 50px;
            line-height: 1.6;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
        }
        /* Cool glow effect for Get Started Free button */
        .hero-content .btn-primary {
            position: relative;
            padding: 18px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 
                0 8px 25px rgba(255, 53, 40, 0.4),
                0 0 30px rgba(255, 53, 40, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .hero-content .btn-primary:hover {
            color: var(--white) !important;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 
                0 15px 35px rgba(255, 53, 40, 0.5),
                0 0 50px rgba(255, 53, 40, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            filter: brightness(1.1);
        }
        .hero-content .btn-primary::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, 
                rgba(255, 53, 40, 0.3), 
                rgba(236, 65, 25, 0.3), 
                rgba(255, 53, 40, 0.3));
            border-radius: 50px;
            z-index: -1;
            filter: blur(8px);
            opacity: 0.7;
            transition: opacity 0.4s ease;
        }
        .hero-content .btn-primary:hover::before {
            opacity: 1;
            filter: blur(12px);
        }

        /* Redesigned Services Section - Updated to match style.css */
        .services-section { padding: 100px 0; background-color: var(--light-color); }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { 
            font-size: 2.8rem; 
            color: var(--dark-color); 
            margin-bottom: 15px; 
            font-family: var(--font-secondary); 
            font-weight: 700;
        }
        .section-header p { 
            font-size: 1.1rem; 
            color: var(--body-color); 
            max-width: 600px; 
            margin: auto; 
        }

        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
        .service-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            border: 2px solid #eee;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            border-color: var(--primary-color);
        }
        .service-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            display: inline-block;
            background-image: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .service-card h3 { 
            font-size: 1.6rem; 
            margin-bottom: 15px; 
            color: var(--dark-color); 
            font-weight: 600;
        }
        .service-card p { 
            color: var(--body-color); 
            line-height: 1.7; 
            margin-bottom: 30px; 
        }
        a.learn-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        a.learn-more:hover { 
            color: var(--primary-dark); 
            transform: translateX(3px);
        }
        a.learn-more i { 
            transition: transform 0.3s ease; 
            font-size: 0.9rem;
        }
        a.learn-more:hover i { 
            transform: translateX(3px); 
        }
        .dashboard-cta { 
            text-align: center; 
            margin-top: 60px; 
        }

        /* --- NEW DASHBOARD LAYOUT & STYLES --- */
        .dashboard-layout {
            display: flex;
            min-height: 100vh;
        }
        /* New Sidebar - Updated to match style.css modern design */
        .dashboard-sidebar {
            width: 260px;
            background: var(--dark-color);
            color: var(--light-color);
            padding: 30px;
            display: flex;
            flex-direction: column;
            flex-shrink: 0;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .sidebar-logo {
            padding-bottom: 30px;
            margin-bottom: 30px;
            border-bottom: 1px solid #475569;
        }
        .sidebar-logo img {
            height: 40px;
            max-width: 100%; /* Ensure logo fits within the container */
            object-fit: contain; /* Maintain aspect ratio */
        }
        .sidebar-nav a {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #94a3b8;
            text-decoration: none;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 10px;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .sidebar-nav a:hover, .sidebar-nav a.active {
            background-color: var(--primary-color);
            color: white;
            transform: translateX(5px);
            box-shadow: 0 4px 12px rgba(255, 53, 40, 0.3);
        }
        .sidebar-nav a i { 
            width: 20px; 
            text-align: center; 
            font-size: 1.1rem;
        }

        /* Dashboard Main Content - Updated to match style.css */
        .dashboard-main {
            flex-grow: 1;
            padding: 40px;
            background-color: #f8f9fa;
        }
        .dashboard-header { margin-bottom: 40px; }
        .dashboard-header h1 { 
            font-size: 2.8rem; 
            color: var(--dark-color); 
            font-family: var(--font-secondary);
            font-weight: 700;
        }
        .dashboard-main .section-header {
            text-align: left;
            margin-bottom: 30px;
        }
        .dashboard-main .section-header h2 {
            font-size: 2.2rem;
            border-bottom: none;
            color: var(--dark-color);
            font-weight: 600;
        }
        .dashboard-main .section-header p {
            max-width: none;
            margin: 0;
            color: var(--body-color);
        }
        .service-category h2 {
            font-size: 2rem;
            color: var(--dark-color);
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid;
            border-image: var(--gradient-primary) 1;
            display: inline-block;
            font-weight: 600;
        }
        .dashboard-main .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .service-item {
            background: white;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid #f0f0f0;
            display: flex;
            flex-direction: column;
            position: relative; /* Added for delete button positioning */
        }
        .service-item:hover { 
            transform: translateY(-10px); 
            box-shadow: 0 15px 40px rgba(0,0,0,0.15); 
        }
        .service-logo { height: 50px; margin-bottom: 20px; object-fit: contain; align-self: center; }
        .service-item h3 { font-size: 1.3rem; color: var(--dark-color); margin-bottom: 10px; }
        .service-item p { color: var(--body-color); line-height: 1.6; margin-bottom: 10px; flex-grow: 1; }
        .service-item .custom-field-display {
            font-size: 0.9rem;
            color: var(--gray-color);
            margin-bottom: 5px;
            text-align: left;
            padding-left: 5px;
        }
        .service-item .custom-field-display strong {
            color: var(--body-color);
        }
        .divider { 
            height: 1px; 
            background: linear-gradient(90deg, transparent 0%, var(--primary-color) 20%, var(--primary-color) 80%, transparent 100%);
            margin: 60px 0; 
            opacity: 0.3;
        }

        /* User ID Display - Updated to match style.css */
        .user-id-display {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: var(--white);
            padding: 20px;
            border-radius: 12px;
            margin-top: 30px;
            font-family: var(--font-primary);
            word-break: break-all;
            font-size: 0.9em;
            box-shadow: 0 8px 30px rgba(255, 53, 40, 0.2);
        }
        .user-id-display strong {
            color: var(--white);
            font-weight: 700;
        }
        /* Delete button style - Updated to match style.css */
        .delete-service-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            color: var(--primary-color); /* Use primary red color */
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.2s ease;
            padding: 5px;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .delete-service-btn:hover {
            color: var(--primary-dark);
            background-color: rgba(255, 53, 40, 0.1);
            transform: scale(1.1);
        }


        /* --- UTILITIES & ANIMATIONS --- */
        .page { display: none; }
        .page.active { display: block; }

        /* --- CUSTOM CURSOR --- */
        .custom-cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: var(--primary-color);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0;
            mix-blend-mode: difference;
            animation: cursorPulse 2s infinite ease-in-out;
            will-change: transform, opacity;
            transition: transform 0.1s ease-out, opacity 0.2s ease;
        }

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

        body {
            cursor: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .auth-buttons { display: none; flex-direction: column; width: 100%; text-align: center; background-color: white; position: absolute; top: 70px; left: 0; padding: 20px 0; box-shadow: var(--shadow-lg); }
            .auth-buttons.active { display: flex; }
            .mobile-menu-btn { display: block; z-index: 1001; }
            .hero-content h1 { 
                font-size: 2.8rem;
                margin-bottom: 20px;
                letter-spacing: -0.5px;
            }
            .hero-content p { 
                font-size: 1.1rem;
                margin-bottom: 40px;
                padding: 0 10px;
            }
            .hero-content .btn-primary {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
            .dashboard-layout { flex-direction: column; }
            .dashboard-sidebar { width: 100%; height: auto; padding-bottom: 10px; }
            .sidebar-logo { padding-bottom: 15px; margin-bottom: 15px; text-align: center;}
            .dashboard-main { padding: 20px; }
            .dashboard-main .section-header h2 { font-size: 1.8rem; }
            .service-category h2 { font-size: 1.6rem; }

            /* Adjust video for smaller screens */
            .video-background video {
                min-width: unset;
                min-height: unset;
                width: 100%;
                height: 100%;
            }
        }

        /* Premium Launch Dashboard Button Styling */
        .auth-buttons .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            box-shadow: 
                0 4px 15px rgba(255, 53, 40, 0.3),
                0 0 20px rgba(255, 53, 40, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .auth-buttons .btn-primary:hover {
            color: var(--white) !important;
            transform: translateY(-2px) scale(1.02);
            box-shadow: 
                0 8px 25px rgba(255, 53, 40, 0.4),
                0 0 30px rgba(255, 53, 40, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            filter: brightness(1.1);
            border-color: rgba(255, 255, 255, 0.2);
        }
        
        .auth-buttons .btn-primary::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, 
                transparent 30%, 
                rgba(255, 255, 255, 0.1) 50%, 
                transparent 70%);
            transform: translateX(-100%) translateY(-100%) rotate(45deg);
            transition: transform 0.6s ease;
        }
        
        .auth-buttons .btn-primary:hover::before {
            transform: translateX(0%) translateY(0%) rotate(45deg);
        }

        /* Adaptive button styling when header is scrolled */
        .header.scrolled .auth-buttons .btn-primary {
            box-shadow: 
                0 4px 15px rgba(255, 53, 40, 0.25),
                0 0 15px rgba(255, 53, 40, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
        }
        
        .header.scrolled .auth-buttons .btn-primary:hover {
            color: var(--white) !important;
            box-shadow: 
                0 6px 20px rgba(255, 53, 40, 0.35),
                0 0 25px rgba(255, 53, 40, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }
        
        /* Responsive adjustments for mobile */
        @media (max-width: 768px) {
            .auth-buttons .btn-primary {
                padding: 14px 25px;
                font-size: 1rem;
                margin: 10px 0;
                width: 200px;
            }
        }

        /* --- BOTTOM FLOATING FOOTER BAR --- */
        .bottom-footer-bar {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-primary); /* Red gradient background */
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 12px 20px;
            box-shadow: 0 8px 30px rgba(255, 53, 40, 0.4);
            z-index: 1000;
            display: flex;
            align-items: center;
            gap: 25px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .bottom-footer-bar .footer-nav-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 15px;
            border-radius: 20px;
            text-decoration: none;
            color: #000000; /* Black text */
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .bottom-footer-bar .footer-nav-item.active,
        .bottom-footer-bar .footer-nav-item:hover {
            background: rgba(255, 255, 255, 0.95); /* White background on hover */
            color: #000000; /* Keep black text on hover */
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
        }
        
        .bottom-footer-bar .footer-nav-item i {
            font-size: 1.1rem;
            transition: transform 0.3s ease;
            color: inherit;
        }
        
        .bottom-footer-bar .footer-nav-item:hover i {
            transform: scale(1.1);
        }
        
        /* Hide on mobile to avoid interference with mobile menu */
        @media (max-width: 600px) {
            .bottom-footer-bar {
                display: none;
            }
        }