/* ============================================
           GLOBAL RESPONSIVE OVERFLOW FIX
           Prevents horizontal scrolling on mobile devices
           ONLY APPLIED ON MOBILE/TABLET (<= 991px)
           ============================================ */

        /* Mobile-specific overflow fixes - all fixes wrapped in media query */
        @media (max-width: 991px) {

            /* ROOT CAUSE FIX: Prevent horizontal overflow at the document level */
            html {
                overflow-x: hidden;
                /* Prevent horizontal scroll */
            }

            body {
                overflow-x: hidden;
                /* Secondary protection */
                position: relative;
                /* Ensure proper stacking context */
            }

            /* Main page wrapper - contain all content */
            .page-wraper {
                overflow-x: hidden;
                /* Catch any overflow from children */
                width: 100%;
                max-width: 100vw;
                /* Never exceed viewport width */
                position: relative;
            }

            /* Page content container */
            .page-content {
                overflow-x: hidden;
                width: 100%;
                max-width: 100%;
            }

            /* Fix for elements with width: 100vw (includes scrollbar width issue) */
            .vw-100,
            .min-vw-100,
            [style*="100vw"] {
                max-width: 100% !important;
                width: 100% !important;
            }

            /* Contain elements with large widths (marquee, sliders) */
            .TickerNews,
            .ti_wrapper,
            .owl-carousel,
            .swiper {
                overflow: hidden;
                max-width: 100%;
            }

            /* Fix pseudo-elements that extend beyond viewport */
            .wt-topbar-left:before,
            .twm-contact-page-detail:after {
                max-width: calc(100vw - 100%) !important;
            }

            /* Container safety - ensure containers never exceed viewport */
            .container,
            .container-fluid {
                max-width: 100%;
                overflow-x: hidden;
            }

            /* Section safety */
            section,
            .section-full {
                overflow-x: hidden;
                max-width: 100%;
            }

            /* Row safety - Bootstrap rows with negative margins */
            .row {
                margin-left: 0;
                margin-right: 0;
                max-width: 100%;
            }

            /* Fix for images that may overflow */
            img {
                max-width: 100%;
                height: auto;
            }

            /* Fix decorative elements that might cause overflow */
            .tuk-decoration,
            .floating-shapes .shape,
            .glow-orb {
                display: none !important;
            }

            /* Constrain absolute positioned decorative elements */
            [style*="right: -"],
            [style*="left: -"] {
                clip-path: inset(0);
            }
        }

        @media (max-width: 767px) {

            /* Extra protection for mobile */
            .twm-banner-overlay .mask-circle-shape {
                display: none !important;
            }

            /* Fix wide range section negative margins */
            .twm-w-range-section {
                margin-left: 0 !important;
                margin-right: 0 !important;
            }
        }

        /* ============================================
           END GLOBAL RESPONSIVE OVERFLOW FIX
           ============================================ */

        /* Remove padding for banner sections - make them full width */
        .twm-home2-bnr,
        .wt-bnr-inr,
        .page-banner,
        .site-header,
        .footer-dark {
            margin-left: 0;
            margin-right: 0;
            width: 100%;
        }

        /* Constrain logo to navbar height without expanding it */
        .logo-header-inner img {
            max-height: 100px !important;
            height: auto !important;
            width: auto !important;
            max-width: 300px !important;
            object-fit: contain !important;
            display: block !important;
        }

        /* Ensure logo containers don't expand */
        .logo-header,
        .logo-header-inner,
        .logo-header-one {
            height: auto !important;
            display: flex !important;
            align-items: center !important;
        }

        .logo-header-inner a {
            display: flex !important;
            align-items: center !important;
            line-height: 1 !important;
        }

        /* Maintain navbar height */
        .header-middle {
            min-height: auto !important;
        }

        /* Responsive adjustments */
        @media (max-width: 991px) {
            .logo-header-inner img {
                max-height: 75px !important;
                max-width: 220px !important;
            }
        }

        @media (max-width: 767px) {
            .logo-header-inner img {
                max-height: 60px !important;
                max-width: 160px !important;
            }
        }

        /* ============================================
           PREMIUM PRELOADER STYLES
           ============================================ */

        .loading-area {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Animated Gradient Background */
        .loader-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 25%, #0d0d2b 50%, #151535 75%, #0a0a1a 100%);
            background-size: 400% 400%;
            animation: gradientShift 8s ease infinite;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        /* Particle Container */
        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: radial-gradient(circle, #ff6b00 0%, transparent 70%);
            border-radius: 50%;
            animation: floatParticle 15s infinite linear;
            opacity: 0;
        }

        @keyframes floatParticle {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.8;
            }

            90% {
                opacity: 0.8;
            }

            100% {
                transform: translateY(-100vh) rotate(720deg);
                opacity: 0;
            }
        }

        /* Glowing Orbs */
        .glow-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.4;
            animation: orbFloat 6s ease-in-out infinite;
        }

        .glow-orb-1 {
            width: 300px;
            height: 300px;
            background: #ff6b00;
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .glow-orb-2 {
            width: 250px;
            height: 250px;
            background: #ff8c00;
            bottom: -80px;
            right: -80px;
            animation-delay: -2s;
        }

        .glow-orb-3 {
            width: 200px;
            height: 200px;
            background: #ffa500;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -4s;
            opacity: 0.2;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            33% {
                transform: translate(30px, -30px) scale(1.1);
            }

            66% {
                transform: translate(-20px, 20px) scale(0.9);
            }
        }

        /* Main Loader Content */
        .loader-content {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 40px;
        }

        /* Animated Logo Ring */
        .logo-ring-container {
            position: relative;
            width: 180px;
            height: 180px;
        }

        .logo-ring {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 50%;
        }

        .logo-ring-outer {
            border: 3px solid transparent;
            border-top-color: #ff6b00;
            border-right-color: #ff8c00;
            animation: spinRing 1.5s linear infinite;
        }

        .logo-ring-middle {
            top: 10px;
            left: 10px;
            width: calc(100% - 20px);
            height: calc(100% - 20px);
            border: 2px solid transparent;
            border-bottom-color: #ffa500;
            border-left-color: #ffb347;
            animation: spinRing 2s linear infinite reverse;
        }

        .logo-ring-inner {
            top: 22px;
            left: 22px;
            width: calc(100% - 44px);
            height: calc(100% - 44px);
            border: 2px solid transparent;
            border-top-color: #ff6b00;
            animation: spinRing 1s linear infinite;
        }

        @keyframes spinRing {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        /* Center Logo Image */
        .logo-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: logoPulse 2s ease-in-out infinite;
        }

        .logo-center img {
            max-width: 80px;
            max-height: 80px;
            object-fit: contain;
            filter: drop-shadow(0 0 20px rgba(255, 107, 0, 0.5));
        }

        @keyframes logoPulse {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                transform: translate(-50%, -50%) scale(1.05);
            }
        }

        /* Brand Text */
        .loader-brand {
            text-align: center;
        }

        .loader-brand h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #fff;
            margin: 0;
            letter-spacing: 8px;
            text-transform: uppercase;
            animation: textGlow 2s ease-in-out infinite;
        }

        .loader-brand p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 10px;
            letter-spacing: 4px;
            text-transform: uppercase;
        }

        @keyframes textGlow {

            0%,
            100% {
                text-shadow: 0 0 10px rgba(255, 107, 0, 0.5),
                    0 0 20px rgba(255, 107, 0, 0.3),
                    0 0 30px rgba(255, 107, 0, 0.2);
            }

            50% {
                text-shadow: 0 0 20px rgba(255, 107, 0, 0.8),
                    0 0 40px rgba(255, 107, 0, 0.5),
                    0 0 60px rgba(255, 107, 0, 0.3);
            }
        }

        /* Progress Bar Section */
        .loader-progress-section {
            position: relative;
            width: 320px;
            padding-top: 50px;
        }

        .loader-progress-container {
            width: 100%;
            height: 6px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 3px;
            overflow: visible;
            position: relative;
        }

        .loader-progress-bar {
            height: 100%;
            background: linear-gradient(90deg, #ff6b00, #ffa500, #ff6b00);
            background-size: 200% 100%;
            border-radius: 3px;
            width: 0%;
            animation: progressGlow 1.5s ease-in-out infinite;
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
        }

        @keyframes progressGlow {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        /* Road/Track Effect */
        .loader-road {
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: repeating-linear-gradient(90deg,
                    rgba(255, 255, 255, 0.3) 0px,
                    rgba(255, 255, 255, 0.3) 15px,
                    transparent 15px,
                    transparent 30px);
            border-radius: 2px;
        }

        /* Tuk Tuk Vehicle */
        .loader-vehicle {
            position: absolute;
            top: -30px;
            left: 0%;
            transform: translateX(-50%);
            transition: left 0.3s ease;
            filter: drop-shadow(0 5px 15px rgba(255, 107, 0, 0.4));
            z-index: 10;
        }

        .tuktuk-img {
            width: 70px;
            height: auto;
            animation: vehicleBounce 0.3s ease-in-out infinite;
            filter: drop-shadow(0 2px 8px rgba(255, 107, 0, 0.6));
        }

        @keyframes vehicleBounce {

            0%,
            100% {
                transform: translateY(0) rotate(-1deg);
            }

            50% {
                transform: translateY(-3px) rotate(1deg);
            }
        }

        /* Dust/Smoke Trail */
        .vehicle-dust {
            position: absolute;
            top: -30px;
            left: -25px;
            width: 30px;
            height: 20px;
            pointer-events: none;
        }

        .dust-particle {
            position: absolute;
            width: 8px;
            height: 8px;
            background: radial-gradient(circle, rgba(255, 165, 0, 0.6) 0%, transparent 70%);
            border-radius: 50%;
            animation: dustFloat 0.5s ease-out infinite;
        }

        .dust-particle:nth-child(1) {
            left: 0;
            animation-delay: 0s;
        }

        .dust-particle:nth-child(2) {
            left: 8px;
            top: 5px;
            animation-delay: 0.1s;
        }

        .dust-particle:nth-child(3) {
            left: 4px;
            top: 10px;
            animation-delay: 0.2s;
        }

        @keyframes dustFloat {
            0% {
                opacity: 0.8;
                transform: translateX(0) scale(1);
            }

            100% {
                opacity: 0;
                transform: translateX(-20px) scale(0.3);
            }
        }

        /* Headlight Glow */
        .vehicle-headlight {
            position: absolute;
            top: -25px;
            right: -40px;
            width: 60px;
            height: 20px;
            background: linear-gradient(90deg, rgba(255, 200, 100, 0.8), transparent);
            filter: blur(8px);
            border-radius: 50%;
            animation: headlightFlicker 0.1s ease-in-out infinite alternate;
        }

        @keyframes headlightFlicker {
            0% {
                opacity: 0.6;
            }

            100% {
                opacity: 0.9;
            }
        }

        .loader-progress-glow {
            position: absolute;
            top: -2px;
            left: 0%;
            width: 25px;
            height: 10px;
            background: #ff6b00;
            border-radius: 50%;
            filter: blur(6px);
            opacity: 0.9;
            transition: left 0.3s ease;
        }

        /* Loading Text */
        .loader-text {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .loader-dots span {
            display: inline-block;
            width: 4px;
            height: 4px;
            background: #ff6b00;
            border-radius: 50%;
            animation: dotBounce 1.4s ease-in-out infinite;
        }

        .loader-dots span:nth-child(1) {
            animation-delay: 0s;
        }

        .loader-dots span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .loader-dots span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes dotBounce {

            0%,
            80%,
            100% {
                transform: scale(0.6);
                opacity: 0.5;
            }

            40% {
                transform: scale(1.2);
                opacity: 1;
            }
        }

        .loader-text {
            text-transform: uppercase;
            font-weight: 600;
            animation: pulse 1.5s infinite;
        }

        /* Speed Lines */
        .speed-lines {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 400px;
            height: 400px;
            pointer-events: none;
        }

        .speed-line {
            position: absolute;
            width: 2px;
            height: 60px;
            background: linear-gradient(to bottom, transparent, rgba(255, 107, 0, 0.6), transparent);
            animation: speedLine 2s ease-in-out infinite;
            opacity: 0;
        }

        @keyframes speedLine {
            0% {
                transform: translateY(-100px) scaleY(0);
                opacity: 0;
            }

            50% {
                transform: translateY(0) scaleY(1);
                opacity: 1;
            }

            100% {
                transform: translateY(100px) scaleY(0);
                opacity: 0;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .logo-ring-container {
                width: 140px;
                height: 140px;
            }

            .logo-center img {
                max-width: 60px;
                max-height: 60px;
            }

            .loader-brand h2 {
                font-size: 1.8rem;
                letter-spacing: 4px;
            }

            .loader-progress-section {
                width: 260px;
                padding-top: 45px;
            }

            .tuktuk-img {
                width: 55px;
            }

            .loader-vehicle {
                top: -40px;
            }

            .glow-orb-1,
            .glow-orb-2 {
                width: 150px;
                height: 150px;
            }
        }

        /* Exit Animation */
        .loading-area.fade-out {
            animation: loaderFadeOut 0.8s ease-out forwards;
        }

        @keyframes loaderFadeOut {
            0% {
                opacity: 1;
            }

            100% {
                opacity: 0;
                visibility: hidden;
            }
        }

        /* Reduced Footer Size Styles */
        .footer-dark .footer-top {
            padding-top: 5px !important;
            padding-bottom: 10px !important;
        }

        .footer-dark .widget {
            margin-top: 0 !important;
            padding-top: 0 !important;
            margin-bottom: 20px !important;
        }

        .footer-dark .widget-title {
            margin-top: 0 !important;
            margin-bottom: 10px !important;
            font-size: 15px !important;
        }

        .footer-dark .widget ul {
            margin-bottom: 0 !important;
        }

        .footer-dark .widget_services ul li,
        .footer-dark .widget_time-duraion ul li {
            margin-bottom: 4px !important;
            line-height: 1.4 !important;
        }

        .footer-dark .widget_time-duraion ul li span {
            display: inline-block;
            width: 110px !important;
            font-weight: 600;
        }

        .ftr-right-section {
            margin-top: 0 !important;
        }

        .footer-dark .logo-footer {
            margin-bottom: 10px !important;
            padding: 5px !important;
        }

        .footer-dark .logo-footer img {
            max-height: 100px !important;
        }

        .footer-dark .f-about-info {
            font-size: 14px;
            line-height: 1.4;
            margin-bottom: 15px;
        }

        .footer-dark .ftr-list {
            font-size: 13px;
            line-height: 1.5;
        }

        .footer-dark .ftr-list li {
            margin-bottom: 5px !important;
        }

        .footer-dark .twm-social {
            margin-top: 15px !important;
        }

        .twm-subscribe-nl {
            margin-top: 15px !important;
            padding-top: 15px !important;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .twm-nl-title {
            font-size: 14px !important;
            margin-bottom: 10px !important;
        }

        .footer-dark .m-b20 {
            margin-bottom: 15px !important;
        }

        .footer-copyright-bar {
            padding: 12px 0 !important;
        }

        .footer-copyright-bar span {
            font-size: 13px !important;
        }

        /* ============================================
           MODERN GLASSMORPHISM NAVBAR STYLES
           ============================================ */

        .modern-navbar {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        /* Enhanced glassmorphism on scroll */
        .modern-navbar.scrolled {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        /* Add padding to page-wraper to compensate for fixed navbar */
        .page-wraper {
            padding-top: 80px;
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            gap: 40px;
        }

        /* Logo Section */
        .navbar-logo {
            flex-shrink: 0;
        }

        .navbar-logo a {
            display: flex;
            align-items: center;
        }

        .navbar-logo img {
            max-height: 60px;
            width: auto;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .navbar-logo a:hover img {
            transform: scale(1.05);
        }

        /* Navigation Menu */
        .navbar-menu {
            flex-grow: 1;
            display: flex;
            justify-content: center;
        }

        .navbar-nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .navbar-nav-list>li {
            position: relative;
        }

        .navbar-nav-list>li>a {
            display: block;
            padding: 10px 18px;
            color: #000000ff;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 6px;
            letter-spacing: 0.3px;
        }

        .navbar-nav-list>li>a:hover,
        .navbar-nav-list>li>a.active {
            color: #ff6100;
        }

        /* Dropdown Styles - Glassmorphism */
        .navbar-dropdown {
            position: relative;
        }

        .navbar-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            padding: 8px 0;
            min-width: 240px;
            list-style: none;
            margin: 8px 0 0 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .navbar-dropdown:hover .navbar-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .navbar-dropdown-menu li {
            margin: 0;
        }

        .navbar-dropdown-menu li a {
            display: block;
            padding: 10px 20px;
            color: #333;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            border-radius: 6px;
            margin: 0 8px;
        }

        .navbar-dropdown-menu li a:hover {
            background: rgba(255, 97, 0, 0.1);
            color: #ff6100;
        }

        /* Contact Badges - Orange Icons, Black Text */
        .navbar-contact {
            display: flex;
            gap: 12px;
            flex-shrink: 0;
        }

        .contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: #000000;
            padding: 0;
            border-radius: 0;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .contact-badge i {
            font-size: 20px;
            color: #ff6100;
            background: #ff6100;
            color: #ffffff;
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .contact-badge span {
            color: #000000;
            font-weight: 500;
        }

        .contact-badge:hover {
            color: #000000;
        }

        .contact-badge:hover i {
            background: #ff7a33;
            transform: scale(1.05);
        }

        /* Mobile Toggle Button */
        .navbar-mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .navbar-mobile-toggle span {
            width: 28px;
            height: 3px;
            background: #333;
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .navbar-mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .navbar-mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .navbar-mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .navbar-container {
                gap: 20px;
                padding: 0 20px;
            }

            .navbar-nav-list {
                gap: 2px;
            }

            .navbar-nav-list>li>a {
                padding: 10px 14px;
                font-size: 14px;
            }

            .contact-badge {
                padding: 0;
                font-size: 13px;
            }

            .contact-badge span {
                display: none;
            }

            .contact-badge i {
                font-size: 18px;
                width: 36px;
                height: 36px;
            }
        }

        @media (max-width: 991px) {
            .navbar-container {
                height: 70px;
                flex-wrap: wrap;
                justify-content: space-between;
                align-items: center;
                padding: 0 10px;
            }

            .navbar-logo {
                flex-grow: 1;
                text-align: left;
            }

            .navbar-logo img {
                max-height: 50px;
            }

            /* Adjust page padding for mobile navbar height */
            .page-wraper {
                padding-top: 70px;
            }

            /* Hide contact section on mobile */
            .navbar-contact {
                display: none !important;
            }

            .navbar-mobile-toggle {
                display: flex;
                margin-left: auto;
                order: 2;
            }

            .navbar-menu {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
                border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                z-index: 999;
            }

            .navbar-menu.active {
                max-height: calc(100vh - 70px);
                overflow-y: auto;
            }

            .navbar-nav-list {
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                padding: 20px 0;
            }

            .navbar-nav-list>li {
                width: 100%;
                border-bottom: 1px solid #f0f0f0;
            }

            .navbar-nav-list>li>a {
                padding: 15px 30px;
                border-radius: 0;
            }

            .navbar-dropdown-menu {
                position: static;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                background: #f8f8f8;
                margin: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .navbar-dropdown.active .navbar-dropdown-menu {
                max-height: 500px;
            }

            .navbar-dropdown>a::after {
                content: '▼';
                font-size: 10px;
                margin-left: 8px;
                transition: transform 0.3s ease;
            }

            .navbar-dropdown.active>a::after {
                transform: rotate(180deg);
            }

            .navbar-contact {
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                background: #ffffff;
                padding: 15px 20px;
                box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
                justify-content: center;
                z-index: 1000;
            }

            .contact-badge span {
                display: inline;
            }
        }

        @media (max-width: 767px) {
            .navbar-container {
                padding: 0 15px;
                height: 60px;
            }

            .navbar-logo img {
                max-height: 45px;
            }

            .navbar-menu {
                top: 60px;
            }

            .navbar-menu.active {
                max-height: calc(100vh - 60px);
            }

            .navbar-nav-list>li>a {
                padding: 12px 20px;
                font-size: 14px;
            }

            .contact-badge {
                flex: 1;
                justify-content: center;
                font-size: 12px;
                padding: 10px 12px;
            }
        }

        @media (max-width: 480px) {
            .contact-badge span {
                max-width: 120px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
        }