/* 3. The "Trigger" - When the menu is active, slide it in */
/* Note: We target the inner-nav specifically when the parent wrapper is active */
.canvas-nav-wrap.active .inner-canvas-nav {
    right: 0 !important; /* Slides into view from right to left */
}

.widget_search { display: none !important; }
/* 1. Set the Slide-out Background & Border */
.inner-canvas-nav {
    background-color: #051224 !important; /* Navy */
    border: 3px solid #00a2db !important; /* Cyan Glow */
    height: 100vh !important;
}


/* 2. Style the Menu Links */
#mainnav_canvas ul.menu li a {
    color: #ffffff !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: -1px;
    padding: 15px 20px !important;
    
}

/* 3. Cyan Hover Effect */
#mainnav_canvas ul.menu li a:hover {
    color: #00a2db !important;
    background: rgba(0, 242, 255, 0.05);
}

/* 4. The "Call Now" Button Injection */
/* We will use CSS to turn the last menu item or an 'after' element into a button */
#mainnav_canvas::after {
    content: "📞 CALL (361) 935-1906";
    display: block;
    margin: 30px 20px;
    padding: 16px;
    background-color: #00a2db; /* Primary Blue */
    color: white;
    text-align: center;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* 5. Close Button Styling */
.canvas-menu-close span {
    
}

/* FLIP MENU TO THE RIGHT SIDE */
.canvas-nav-wrap {
    left: auto !important; /* Disables the left alignment */
    right: -100%; /* Hidden off-screen to the right */
    transition: right 0.5s ease !important;
}

/* When the menu is active/open */
.canvas-nav-wrap.active {
    right: 0 !important;
    left: auto !important;
}

/* Ensure the inner content stays aligned correctly */
.inner-canvas-nav {
    margin-left: auto !important;
}

/* Adjust the Close Button to be on the opposite side if needed */
.canvas-menu-close {
    left: 20px !important;
    right: auto !important;
}

