        /* All styles */
        :root {
            --primary-color: #dc2626;
            --secondary-color: #b91c1c;
            --success-color: #10b981;
            --danger-color: #ef4444;
            --warning-color: #f59e0b;
            --dark-color: #0f172a;
            --light-color: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: white;
            color: #1e293b;
            overflow-x: hidden;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border: none;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }

        /* WhatsApp Chat Button */
        .whatsapp-chat {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 55px;
            height: 55px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-chat:hover {
            transform: scale(1.1);
            color: white;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Navigation */
        .navbar {
            background: var(--dark-color) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            padding: 0.7rem 0;
            background: rgba(15, 23, 42, 0.98) !important;
            backdrop-filter: blur(10px);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: white !important;
            transition: transform 0.3s ease;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-brand i {
            color: var(--primary-color);
        }

        .nav-link {
            color: rgba(255,255,255,0.9) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color) !important;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 80%;
        }

        .btn-outline-primary-custom {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 10px;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s;
            background: transparent;
        }

        .btn-outline-primary-custom:hover {
            /*background: var(--primary-color);*/
            color: white;
            transform: translateY(-2px);
        }

        .btn-primary-custom {
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 0.5rem 1.5rem;
            transition: all 0.3s;
        }

        .btn-primary-custom:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
        }

        /* Hero Section with Bus Background */
        .hero {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?w=1920&h=600&fit=crop');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.15;
            z-index: 0;
        }

        .hero-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(15,23,42,0.8) 0%, rgba(30,41,59,0.8) 100%);
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: white;
            animation: fadeInUp 1s ease;
        }

        .hero p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .hero-stats {
            margin-top: 2rem;
            display: flex;
            gap: 2rem;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Animated Icons */
        .animated-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .animated-icons div {
            position: absolute;
            font-size: 1.5rem;
            color: rgba(220, 38, 38, 0.3);
            animation: floatIcon 20s infinite linear;
        }

        .icon-bus {
            top: 15%;
            left: 10%;
            font-size: 2rem !important;
            animation-delay: 0s !important;
            animation-duration: 15s !important;
        }

        .icon-map {
            top: 25%;
            right: 8%;
            font-size: 1.8rem !important;
            animation-delay: 2s !important;
            animation-duration: 18s !important;
        }

        .icon-ticket {
            bottom: 20%;
            left: 15%;
            font-size: 1.6rem !important;
            animation-delay: 4s !important;
            animation-duration: 20s !important;
        }

        .icon-clock {
            top: 40%;
            left: 5%;
            font-size: 1.4rem !important;
            animation-delay: 1s !important;
            animation-duration: 16s !important;
        }

        .icon-wifi {
            top: 60%;
            right: 12%;
            font-size: 1.7rem !important;
            animation-delay: 3s !important;
            animation-duration: 22s !important;
        }

        .icon-coffee {
            bottom: 30%;
            right: 20%;
            font-size: 1.5rem !important;
            animation-delay: 5s !important;
            animation-duration: 19s !important;
        }

        .icon-charge {
            top: 70%;
            left: 20%;
            font-size: 1.3rem !important;
            animation-delay: 2.5s !important;
            animation-duration: 17s !important;
        }

        .icon-shield {
            bottom: 15%;
            right: 25%;
            font-size: 1.6rem !important;
            animation-delay: 3.5s !important;
            animation-duration: 21s !important;
        }

        @keyframes floatIcon {
            0% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-30px) translateX(20px) rotate(10deg);
                opacity: 0.6;
            }
            50% {
                transform: translateY(20px) translateX(-15px) rotate(-5deg);
                opacity: 0.4;
            }
            75% {
                transform: translateY(-20px) translateX(-10px) rotate(5deg);
                opacity: 0.5;
            }
            100% {
                transform: translateY(0px) translateX(0px) rotate(0deg);
                opacity: 0.3;
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 1rem;
            }
            
            .stat-item {
                flex: 1;
            }
            
            .animated-icons div {
                font-size: 1rem !important;
            }
            
            .icon-bus {
                font-size: 1.3rem !important;
            }
            
            .icon-map, .icon-ticket, .icon-shield {
                font-size: 1.1rem !important;
            }
        }

        /* Search Section */
        .search-section {
            margin-top: -50px;
            position: relative;
            z-index: 10;
            padding-bottom: 60px;
        }

        .search-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            animation: fadeInUp 1s ease 0.6s both;
        }

        .form-control, .form-select {
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            padding: 0.75rem 1rem;
            transition: all 0.3s;
        }

        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
        }

        /* Trip Card with Image */
        .trip-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #f1f5f9;
        }

        .trip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .trip-card-img {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .trip-card-img::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.1) 100%);
        }

        .trip-card-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--primary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            z-index: 1;
        }

        .trip-card-content {
            padding: 1.25rem;
        }

        .route-price {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #1e293b;
            margin-bottom: 1rem;
        }

        .section-title p {
            color: #64748b;
            font-size: 1.1rem;
        }

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #f1f5f9;
            margin-bottom: 1.5rem;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: transform 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
        }

        .feature-icon i {
            font-size: 2rem;
            color: white;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #1e293b;
        }

        .feature-card p {
            color: #64748b;
            line-height: 1.6;
        }

        /* Popular Routes Section */
        .routes-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 50%, #fecaca 100%);
            position: relative;
            overflow: hidden;
        }

        .routes-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(220,38,38,0.05)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            pointer-events: none;
        }

        .route-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .route-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 30px rgba(220, 38, 38, 0.15);
        }

        .route-image {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
            transition: transform 0.5s ease;
        }

        .route-card:hover .route-image {
            transform: scale(1.05);
        }

        .route-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(220,38,38,0.3) 0%, rgba(185,28,28,0.3) 100%);
        }

        .route-info {
            padding: 1.5rem;
        }

        .route-info h4 {
            margin-bottom: 0.5rem;
            color: #1e293b;
            font-weight: 600;
        }

        .route-price {
            color: var(--primary-color);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Results Section */
        .results-section {
            padding: 60px 0;
            background: #f1f5f9;
            min-height: 300px;
        }
        
        .loader {
            display: none;
            text-align: center;
            padding: 40px;
        }
        
        .spinner-border {
            width: 3rem;
            height: 3rem;
        }

        /* Seat Layout Styles */
        .bus-container {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .driver-area {
            text-align: center;
            padding: 10px;
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
            border-radius: 10px;
            margin-bottom: 25px;
            font-size: 14px;
            font-weight: bold;
        }

        .row-label {
            width: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #475569;
            background: #f1f5f9;
            border-radius: 8px;
            margin-right: 10px;
            font-size: 14px;
        }

        .seat {
            width: 65px;
            height: 65px;
            margin: 4px;
            border-radius: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transition: all 0.3s ease;
            position: relative;
        }

        .seat-number {
            font-size: 14px;
            font-weight: bold;
        }

        .seat.available {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .seat.available:hover {
            transform: scale(1.08);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
            cursor: pointer;
        }

        .seat.booked {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            color: white;
            cursor: not-allowed;
            opacity: 0.8;
            text-decoration: line-through;
        }

        .seat.selected {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            transform: scale(1.08);
            box-shadow: 0 0 0 3px #fff, 0 0 0 6px #f59e0b;
        }

        .aisle-space {
            width: 30px;
            background: transparent;
        }

        .seat-legend {
            display: flex;
            gap: 25px;
            justify-content: center;
            margin-top: 25px;
            padding: 15px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .legend-color {
            width: 30px;
            height: 30px;
            border-radius: 8px;
        }

        .legend-color.available {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
        }

        .legend-color.booked {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        }

        .legend-color.selected {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }

        .passenger-form {
            border-top: 1px solid #e2e8f0;
            padding-top: 20px;
            margin-top: 20px;
        }
        
        .passenger-detail {
            background: #f8fafc;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 15px;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 80px 0;
            background: white;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin: 1rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid #f1f5f9;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .testimonial-avatar i {
            font-size: 2rem;
            color: white;
        }

        .testimonial-text {
            font-style: italic;
            color: #475569;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .testimonial-name {
            font-weight: bold;
            margin-bottom: 0;
            color: #1e293b;
        }

        .testimonial-title {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* App Download Section */
        .app-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: white;
        }

        .app-buttons {
            margin-top: 2rem;
        }

        .app-btn {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 0.75rem 1.5rem;
            margin: 0 0.5rem;
            transition: all 0.3s;
            color: white;
            text-decoration: none;
            backdrop-filter: blur(10px);
        }

        .app-btn:hover {
            background: rgba(255,255,255,0.25);
            color: white;
            transform: translateY(-3px);
        }

        .app-btn i {
            font-size: 2rem;
            margin-right: 0.75rem;
        }

        .app-btn-text small {
            font-size: 0.8rem;
            opacity: 0.8;
        }

        .app-btn-text strong {
            font-size: 1.2rem;
        }

        /* Footer */
        .footer {
            background: #0f172a;
            color: white;
            padding: 60px 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer h5 {
            margin-bottom: 1.5rem;
            font-weight: bold;
            color: white;
        }

        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s;
        }

        .footer a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
            display: inline-block;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 0.75rem;
        }

        .social-links a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin-right: 0.5rem;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #94a3b8;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .search-card {
                margin: 0 1rem;
                padding: 1.5rem;
            }
            
            .hero-stats {
                flex-wrap: wrap;
                gap: 1rem;
            }
            
            .stat-item {
                flex: 1;
            }
            
            .app-btn {
                margin: 0.5rem;
            }
            
            .feature-card {
                margin-bottom: 1rem;
            }
            
            .back-to-top, .whatsapp-chat {
                bottom: 15px;
                right: 15px;
            }
            
            .seat {
                width: 45px;
                height: 45px;
                margin: 3px;
                border-radius: 8px;
            }
            
            .seat-number {
                font-size: 11px;
            }
            
            .row-label {
                width: 40px;
                font-size: 11px;
            }
            
            .aisle-space {
                width: 15px;
            }
            
            .legend-color {
                width: 25px;
                height: 25px;
            }
            
            .trip-card-img {
                height: 120px;
            }

            .trip-card .col-md-4 {
                margin-bottom: 10px;
            }
        }

        .trip-card .img-fluid {
            border-radius: 10px;
            object-fit: cover;
        }

        /* App Mockup Image Animation */
        .app-mockup-img {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .app-mockup-img:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 50px rgba(0,0,0,0.4);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .app-mockup-img {
                max-width: 80%;
                margin-top: 30px;
            }
        }

        /* Navbar Logo Styles */
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: bold;
            color: white !important;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-logo {
            height: 45px;
            width: auto;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .brand-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #dc2626 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Responsive Navbar Logo */
        @media (max-width: 992px) {
            .navbar-logo {
                height: 38px;
            }
            
            .brand-text {
                font-size: 1.3rem;
            }
        }

        @media (max-width: 768px) {
            .navbar-brand {
                gap: 8px;
            }
            
            .navbar-logo {
                height: 32px;
            }
            
            .brand-text {
                font-size: 1.2rem;
            }
        }

        @media (max-width: 480px) {
            .navbar-logo {
                height: 28px;
            }
            
            .brand-text {
                font-size: 1rem;
            }
        }

        /* Navbar Toggler for Mobile */
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
            outline: none;
        }

        .navbar-toggler-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Scrolled Navbar Effect */
        .navbar.scrolled .navbar-logo {
            height: 35px;
        }

        @media (max-width: 768px) {
            .navbar.scrolled .navbar-logo {
                height: 28px;
            }
        }

        /* Mobile Menu Styles */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--dark-color);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
            
            .nav-link {
                padding: 0.75rem 1rem;
                margin: 0;
            }
            
            .nav-link::after {
                display: none;
            }
            
            .btn-outline-primary-custom,
            .btn-primary-custom {
                /*display: inline-block;*/
                text-align: center;
                margin: 0.5rem 0;
            }
        }