
        :root {
            --primary: #1a1a1a;
            --secondary: #4a4a4a;
            --accent: #6b7280;
            --light: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
            --hover: #f1f5f9;
            --success: #059669;
            --text-light: #64748b;
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--primary);
            background-color: var(--white);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
            line-height: 1.2;
        }
        
        /* Smooth animations */
        * {
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 6px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--light);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 3px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }
        
        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            padding: 1rem 0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            box-shadow: var(--shadow-sm);
            background: rgba(255, 255, 255, 0.98);
        }

        /* Logo Styles */
        .logo-container {
            position: relative;
        }

        .logo-icon {
            width: 98px;
            height: 48px;
            border-radius: 12px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            
            transition: all 0.3s ease;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: 8px;
            right: 8px;
            width: 16px;
            height: 16px;
            border-radius: 4px;
           
        }

        .logo-s {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: white;
            z-index: 1;
            position: relative;
        }

        .navbar-brand:hover .logo-icon {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            color: var(--primary) !important;
            font-weight: 700;
            font-size: 1.25rem;
            text-decoration: none;
        }
        
        .navbar-brand:hover {
            color: var(--primary) !important;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 8px;
            position: relative;
            white-space: nowrap;
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--primary) !important;
            background: var(--hover);
        }
        
        .btn-modern {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            border-radius: 12px;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-modern:hover {
            background: var(--secondary);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
            color: var(--white);
        }
        
        .btn-modern:active {
            transform: translateY(0);
        }
        
        .btn-outline-modern {
            background: transparent;
            color: var(--primary);
            border: 1.5px solid var(--border);
            padding: 0.75rem 1.5rem;
            font-weight: 500;
            border-radius: 12px;
            transition: all 0.2s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .btn-outline-modern:hover {
            background: var(--primary);
            color: var(--white);
            border-color: var(--primary);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
            padding: 8rem 0 4rem;
            margin-top: 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(107, 114, 128, 0.05) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary);
            opacity: 0;
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .hero p {
            font-size: 1.25rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.2s forwards;
        }
        
        .hero-buttons {
            opacity: 0;
            animation: fadeInUp 0.8s ease 0.4s forwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Stats Section */
        .stats {
            background: var(--white);
            padding: 3rem 0;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        
        .stat-item {
            text-align: center;
            padding: 1.5rem 1rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }
        
        .stat-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .stat-number, .landing-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .stat-label {
            color: var(--text-light);
            font-size: 0.95rem;
            font-weight: 500;
        }
        
        /* Services Section */
        .services {
            padding: 4rem 0;
            background: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }
        
        .section-title.animate {
            opacity: 0;
            transform: translateY(20px);
        }
        
        .section-title.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }
        
        .section-title p {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .service-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            height: 100%;
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.4s ease;
            cursor: pointer;
        }
        
        .service-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .service-card.animate {
            opacity: 0;
            transform: translateY(30px);
        }
        
        .service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.5s ease;
        }
        
        .service-card:hover::before {
            left: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary);
        }
        
        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0;
            font-size: 1.5rem;
            color: var(--primary);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .service-card:hover .service-icon {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.1);
        }
        
        .service-card h3 {
            font-size: 1.25rem;
            margin-bottom: 0;
            color: var(--primary);
        }
        
        .service-card p {
            color: var(--text-light);
            margin: 0;
            line-height: 1.6;
        }
        
        /* How it works */
        .how-it-works {
            padding: 4rem 0;
            background: var(--white);
        }
        
        .step-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            text-align: center;
            position: relative;
            border: 1px solid var(--border);
            height: 100%;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }
        
        .step-card-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        .step-card.animate {
            opacity: 0;
            transform: translateY(30px);
        }
        
        .step-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        
        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: var(--primary);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .step-card .service-icon {
            margin: 1.5rem auto 1.5rem;
        }
        
        .confirmation-process {
            margin-top: 3rem;
            padding: 2.5rem;
            background: var(--light);
            border-radius: 20px;
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }
        
        .confirmation-process.animate {
            opacity: 0;
            transform: translateY(30px);
        }
        
        .confirmation-process.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Footer */
        .footer {
            background: var(--primary);
            color: var(--white);
            padding: 4rem 0 2rem;
        }
        
        .footer h5 {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        
        .footer ul li a:hover {
            color: var(--white);
        }
        
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            margin-right: 0.75rem;
            transition: all 0.2s ease;
        }
        
        .social-icons a:hover {
            background: var(--white);
            color: var(--primary);
            transform: translateY(-2px);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                padding: 6rem 0 3rem;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
                padding: 0 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
                padding: 0 1rem;
            }
            
            .hero-buttons .btn-modern,
            .hero-buttons .btn-outline-modern {
                justify-content: center;
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }
            
            .navbar-brand span {
                font-size: 1rem;
            }
            
            .logo-icon {
                width: 40px;
                height: 40px;
            }

            .logo-s {
                font-size: 16px;
            }

            .logo-icon::before {
                width: 12px;
                height: 12px;
                top: 6px;
                right: 6px;
            }
            
            .services,
            .how-it-works {
                padding: 2rem 0;
            }
            
            .stats {
                padding: 1.5rem 0;
            }
            
            .section-title {
                margin-bottom: 1.5rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
                margin-bottom: 0.5rem;
            }
            
            .section-title p {
                font-size: 0.95rem;
            }
            
            .service-card,
            .step-card {
                margin-bottom: 0.75rem;
            }
            
            .service-card {
                padding: 0.75rem 0.5rem !important;
                border-radius: 8px !important;
                margin-bottom: 0.5rem !important;
            }
            
            .service-card-header {
                gap: 0.5rem !important;
                margin-bottom: 0.5rem !important;
            }
            
            .service-card h3 {
                font-size: 0.9rem !important;
                margin-bottom: 0 !important;
            }
            
            .service-card p {
                font-size: 0.8rem !important;
                line-height: 1.3 !important;
            }
            
            .service-icon {
                width: 32px !important;
                height: 32px !important;
                font-size: 1rem !important;
                margin-bottom: 0 !important;
                border-radius: 8px !important;
            }
            
            .step-card {
                padding: 0.75rem 0.5rem !important;
                border-radius: 8px !important;
                margin-bottom: 0.5rem !important;
            }
            
            .step-card h3 {
                font-size: 0.9rem !important;
                margin-bottom: 0.4rem !important;
            }
            
            .step-card p {
                font-size: 0.8rem !important;
                line-height: 1.3 !important;
            }
            
            .step-card .service-icon {
                margin: 0.75rem auto 0.75rem !important;
            }
            
            .confirmation-process {
                padding: 1.5rem 1rem;
                margin-top: 2rem;
                border-radius: 16px;
            }
            
            .stat-item {
                padding: 1rem;
            }
            
            .stat-number, .landing-stat-number {
                font-size: 2rem;
            }
            
            .footer {
                padding: 3rem 0 2rem;
            }
            
            .navbar-nav {
                text-align: center;
                margin-top: 1rem;
            }
            
            .navbar-nav .nav-item {
                margin: 0.25rem 0;
            }
            
            .navbar-nav .nav-item:last-child {
                margin-top: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 5rem 0 2rem;
                margin-top: 70px;
            }
            
            .navbar {
                padding: 0.5rem 0;
            }
            
            .navbar-brand {
                max-width: 180px; /* Limit width to encourage wrapping */
                flex-shrink: 1;
            }
            
            .navbar-brand span {
                font-size: 0.75rem;
                line-height: 1.3;
                word-spacing: -0.1em;
                letter-spacing: -0.02em;
                display: inline-block;
                white-space: normal;
                text-align: left;
            }
            
            .logo-container {
                margin-right: 0.5rem !important;
            }
            
            .logo-icon {
                width: 35px !important;
                height: 35px !important;
            }
            
            .navbar-toggler {
                padding: 0.25rem 0.5rem;
                font-size: 1.1rem;
            }
            
            .navbar-collapse {
                margin-top: 0.5rem;
                padding: 1rem;
                border-radius: 8px;
            }
            
            .navbar-nav .nav-link {
                padding: 0.5rem 0.75rem !important;
                font-size: 0.9rem;
            }
            
            .btn-modern,
            .btn-outline-modern {
                padding: 0.5rem 1rem;
                font-size: 0.8rem;
                width: 100%;
                justify-content: center;
                margin: 0.25rem 0;
            }
            
            .services,
            .how-it-works {
                padding: 1.5rem 0;
            }
            
            .section-title {
                margin-bottom: 1.25rem;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
                margin-bottom: 0.5rem;
            }
            
            .section-title p {
                font-size: 0.95rem;
                padding: 0 1rem;
            }
            
            .service-card {
                padding: 0.5rem 0.4rem !important;
                margin-bottom: 0.4rem !important;
                border-radius: 6px !important;
            }
            
            .service-card h3 {
                font-size: 0.85rem !important;
                margin-bottom: 0.3rem !important;
            }
            
            .service-card p {
                font-size: 0.75rem !important;
                line-height: 1.25 !important;
            }
            
            .service-icon {
                width: 28px !important;
                height: 28px !important;
                font-size: 0.9rem !important;
                margin-bottom: 0.4rem !important;
                border-radius: 6px !important;
            }
            
            .step-card {
                padding: 0.5rem 0.4rem !important;
                margin-bottom: 0.4rem !important;
                border-radius: 6px !important;
            }
            
            .step-card h3 {
                font-size: 0.85rem !important;
                margin-bottom: 0.3rem !important;
            }
            
            .step-card p {
                font-size: 0.75rem !important;
                line-height: 1.25 !important;
            }
            
            .step-card .service-icon {
                margin: 0.75rem auto 0.75rem;
            }
            
            .step-number {
                width: 32px;
                height: 32px;
                font-size: 0.9rem;
                top: -16px;
            }
            
            .confirmation-process {
                margin-top: 1.5rem;
                padding: 1.25rem 0.75rem;
                border-radius: 12px;
            }
            
            .confirmation-process h3 {
                font-size: 1.1rem;
                margin-bottom: 0.75rem;
            }
            
            .confirmation-process p {
                font-size: 0.9rem;
                margin-bottom: 1rem;
            }
            
            .confirmation-process h5 {
                font-size: 0.95rem;
                margin-bottom: 0.5rem;
            }
            
            .confirmation-process ul li {
                font-size: 0.85rem;
                margin-bottom: 0.25rem;
            }
            
            .confirmation-process .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .footer {
                text-align: center;
                padding: 2.5rem 0 1.5rem;
            }
            
            .footer .col-lg-4 {
                margin-bottom: 1.5rem;
            }
            
            .footer h5 {
                font-size: 1rem;
                margin-bottom: 1rem;
            }
            
            .footer ul li {
                margin-bottom: 0.5rem;
                font-size: 0.9rem;
            }
        }
        
        /* Extra small screens */
        @media (max-width: 480px) {
            .navbar {
                padding: 0.25rem 0;
            }
            
            .navbar-brand {
                max-width: 140px; /* Even smaller width for tiny screens */
                flex-shrink: 1;
            }
            
            .navbar-brand span {
                font-size: 0.65rem;
                line-height: 1.2;
                word-spacing: -0.15em;
                letter-spacing: -0.03em;
                display: inline-block;
                white-space: normal;
                text-align: left;
            }
            
            .logo-container {
                margin-right: 0.25rem !important;
            }
            
            .logo-icon {
                width: 30px !important;
                height: 30px !important;
            }
            
            .navbar-toggler {
                padding: 0.2rem 0.4rem;
                font-size: 1rem;
            }
            
            .navbar-collapse {
                margin-top: 0.25rem;
                padding: 0.75rem;
                border-radius: 6px;
            }
            
            .navbar-nav .nav-link {
                padding: 0.4rem 0.6rem !important;
                font-size: 0.85rem;
            }
            
            .btn-modern,
            .btn-outline-modern {
                padding: 0.4rem 0.8rem;
                font-size: 0.75rem;
                width: 100%;
                margin: 0.2rem 0;
            }
        }
        
        /* Very small screens */
        @media (max-width: 360px) {
            .navbar-brand {
                max-width: 120px; /* Very compact for tiny screens */
            }
            
            .navbar-brand span {
                font-size: 0.6rem;
                line-height: 1.15;
                word-spacing: -0.2em;
                letter-spacing: -0.04em;
            }
            
            .logo-icon {
                width: 28px !important;
                height: 28px !important;
            }
            
            .navbar-toggler {
                padding: 0.15rem 0.3rem;
                font-size: 0.9rem;
            }
        }
        
        /* Small device improvements */
        @media (max-width: 400px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 0.95rem;
            }
            
            .btn-modern,
            .btn-outline-modern {
                padding: 0.6rem 1rem;
                font-size: 0.85rem;
            }
            
            .services,
            .how-it-works {
                padding: 1.5rem 0;
            }
            
            .section-title {
                margin-bottom: 1.25rem;
            }
            
            .section-title h2 {
                font-size: 1.4rem;
                margin-bottom: 0.4rem;
            }
            
            .section-title p {
                font-size: 0.9rem;
            }
            
            .service-card {
                padding: 0.875rem 0.625rem;
                margin-bottom: 0.625rem;
                border-radius: 8px;
            }
            
            .service-card h3 {
                font-size: 0.95rem;
                margin-bottom: 0.4rem;
            }
            
            .service-card p {
                font-size: 0.8rem;
                line-height: 1.35;
            }
            
            .service-icon {
                width: 36px;
                height: 36px;
                font-size: 1rem;
                margin-bottom: 0.625rem;
                border-radius: 8px;
            }
            
            .step-card {
                padding: 0.875rem 0.625rem;
                margin-bottom: 0.625rem;
                border-radius: 8px;
            }
            
            .step-card h3 {
                font-size: 0.95rem;
                margin-bottom: 0.4rem;
            }
            
            .step-card p {
                font-size: 0.8rem;
                line-height: 1.35;
            }
            
            .step-card .service-icon {
                margin: 0.625rem auto 0.625rem !important;
            }
            
            .step-number {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
                top: -14px;
                border-radius: 8px;
            }
            
            .confirmation-process {
                margin-top: 1.25rem;
                padding: 1rem 0.625rem;
                border-radius: 10px;
            }
            
            .confirmation-process h3 {
                font-size: 1rem;
                margin-bottom: 0.625rem;
            }
            
            .confirmation-process p {
                font-size: 0.85rem;
                margin-bottom: 0.875rem;
            }
            
            .confirmation-process h5 {
                font-size: 0.9rem;
                margin-bottom: 0.4rem;
            }
            
            .confirmation-process ul li {
                font-size: 0.8rem;
                margin-bottom: 0.2rem;
            }
            
            .confirmation-process .service-icon {
                width: 50px;
                height: 50px;
                font-size: 1.25rem;
            }
        }
        
        /* Loading animation */
        .loading {
            opacity: 0;
            animation: fadeIn 0.6s ease forwards;
        }
        
        @keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

        /* Compact navigation styles for intermediate screens */
        .navbar-nav .nav-link.px-2 {
            padding: 0.75rem 0.5rem !important;
            margin: 0 0.25rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            position: relative;
        }
        
        .navbar-nav .nav-link.px-2:hover {
            background: var(--hover);
            color: var(--primary) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link.px-2.active {
            background: var(--hover);
            color: var(--primary) !important;
        }
        
        .navbar-nav .nav-link.px-2.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        /* Mobile navbar improvements - Updated to lg breakpoint */
        @media (max-width: 991.98px) {
            .navbar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1030;
            }
            
            .navbar-toggler {
                border: none;
                padding: 0.5rem;
                font-size: 1.25rem;
                background: none;
                color: var(--primary);
                transition: all 0.3s ease;
                position: relative;
                z-index: 1031;
            }
            
            .navbar-toggler:focus {
                box-shadow: none;
                outline: none;
            }
            
            .navbar-toggler:hover {
                color: var(--secondary);
                background: var(--hover);
                border-radius: 8px;
            }
            
            .navbar-toggler.active {
                color: var(--primary);
                transform: rotate(90deg);
            }
            
            .navbar-collapse {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                margin-top: 0;
                padding: 1.5rem;
                border-radius: 0 0 12px 12px;
                border: 1px solid var(--border);
                border-top: none;
                box-shadow: var(--shadow-lg);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                z-index: 1030;
            }
            
            .navbar-nav {
                width: 100%;
            }
            
            .navbar-nav .nav-item {
                margin: 0.5rem 0;
                width: 100%;
            }
            
            .navbar-nav .nav-link {
                padding: 0.75rem 1rem !important;
                border-radius: 8px;
                transition: all 0.2s ease;
                display: block;
                width: 100%;
            }
            
            .navbar-nav .nav-link:hover {
                background: var(--hover);
                transform: translateX(5px);
            }
            
            .btn-modern,
            .btn-outline-modern {
                width: 100%;
                justify-content: center;
                margin: 0.5rem 0;
            }
        }
        .responsive { max-width: 100%; height: auto; display: block; }

/* Off-Canvas Navigation Styles */
.offcanvas {
    width: 280px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.offcanvas-header {
    padding: 1.5rem 1.25rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.offcanvas-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.offcanvas-body {
    padding: 1.25rem;
    color: #e2e8f0;
}

.nav-section {
    margin-bottom: 2rem;
}

.nav-section h6 {
    color: #94a3b8;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-link-offcanvas {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: #e2e8f0;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-link-offcanvas:hover {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    transform: translateX(4px);
}

.nav-link-offcanvas.active {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
    font-weight: 600;
}

.nav-link-offcanvas.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #fbbf24;
    border-radius: 0 3px 3px 0;
}

.nav-link-offcanvas i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.account-section {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.account-section h6 {
    color: #94a3b8;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.account-section .btn {
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.625rem 1rem;
    transition: all 0.2s ease;
}

.account-section .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
    background: transparent;
}

.account-section .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-1px);
}

.account-section .btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border: none;
    color: #1e293b;
    font-weight: 600;
}

.account-section .btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.btn-close {
    filter: invert(1);
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

/* Mobile responsiveness for off-canvas */
@media (max-width: 768px) {
    .offcanvas {
        width: 260px;
    }
    
    .offcanvas-header {
        padding: 1.25rem 1rem 0.75rem;
    }
    
    .offcanvas-title {
        font-size: 1rem;
    }
    
    .offcanvas-body {
        padding: 1rem;
    }
    
    .nav-link-offcanvas {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .nav-link-offcanvas i {
        font-size: 0.9rem;
    }
}
