

.mobile-nav-drawer {
              background-color: #00000047;
    backdrop-filter: blur(7px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            overflow-y: auto;
            transition: transform 0.4s ease-in-out;
            z-index: 99;
            transform: translateY(-100%);
        }

        .mobile-nav-drawer.mobile-nav-active {
            transform: translateY(0);
        }

        /* Mobile Menu button */
        .mobile-menu-trigger {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
             background-color: #00000000;
    
            border: none;
            cursor: pointer;
            position: relative;
            z-index: 102;
        }

        /* Hide mobile nav on screens larger than 920px */
        

        .mobile-hamburger-icon {
            width: 24px;
            height: 18px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .mobile-hamburger-icon span {
            display: block;
            width: 100%;
            height: 2px;
            background-color: #a7d2ff;
            transition: all 0.3s ease;
        }

        /* Hamburger animation */
        .mobile-menu-trigger.mobile-menu-open .mobile-hamburger-icon span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-trigger.mobile-menu-open .mobile-hamburger-icon span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-trigger.mobile-menu-open .mobile-hamburger-icon span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Nav menu content */
        .mobile-nav-inner,
        .mobile-nav-contacts,
        .mobile-nav-socials {
            padding: 20px;
        }

        .mobile-menu-list {
            list-style: none;
        }

        .mobile-menu-item {
            margin: 10px 0;
        }

        .mobile-menu-link {
            color: white;
            text-decoration: none;
            font-size: 16px;
            display: block;
            padding: 10px 0;
            transition: color 0.3s ease;
        }

        .mobile-menu-link:hover {
            color: #54a6ff;
        }

        .mobile-appointment-btn {
            display: inline-block;
            background-color: #0051aa;
            color: white;
            padding: 12px 24px;
            border-radius: 5px;
            text-decoration: none;
            transition: background-color 0.3s ease;
        }

        .mobile-appointment-btn:hover {
            background-color: #54a6ff;
            color: black;
        }

       @media screen and (max-width: 991px) {
        .mobile-header-top {
          background-color: #00000047;
    backdrop-filter: blur(7px);
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 101;
        }
    }
        .mobile-header-logo {
            color: white;
            font-weight: bold;
            font-size: 20px;
        }

        .mobile-contact-block {
            display: flex;
            align-items: center;
            gap: 10px;
            color: white;
            margin: 8px 0;
        }

        .mobile-contact-icon {
            width: 20px;
            height: 20px;
        }

        .mobile-contact-link,
        .mobile-contact-text {
            color: white;
            text-decoration: none;
            font-size: 14px;
        }

        .mobile-nav-socials {
            display: flex;
            gap: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
        }

        .mobile-social-icon-wrapper {
            display: inline-block;
        }

        .mobile-social-icon-wrapper img {
            width: 24px;
            height: 24px;
          
        }

        @media (min-width: 921px) {
            .mobile-nav-drawer {
                display: none !important;
            }

            .mobile-menu-trigger {
                display: none !important;
            }
        }