/* Mobile Menu Styles */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: left 0.3s ease;
    padding-top: 80px;
    overflow-y: auto;
}
.mobile-nav.show {
    left: 0;
}
.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    text-decoration: none;
    transition: all 0.3s;
}
.mobile-nav li a:hover,
.mobile-nav li.active a {
    background: #f8f9fa;
    color: #007bff;
}
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    padding: 15px;
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 1001;
    color: #333;
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}
.mobile-menu-overlay.show {
    display: block;
}
.no-scroll {
    overflow: hidden;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
    }
}
/* Existing Header Styles */
.site-header {
    position: relative;
    z-index: 100;
}
.top-header {
    background: #f8f9fa;
    padding: 10px 0;
}
.header-contact-info span {
    margin: 0 10px;
}
.main-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.logo {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: 180px;
}
.logo img {
    /* Adjusted for mobile in inline style in header.php */
}
.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    min-width: 0;
    max-width: 180px;
}
.logo-text h1,
.logo-text span {
    display: block !important;
    white-space: normal !important;
}
.logo-text h1 {
    font-size: 0.85rem;
    line-height: 1.1;
    margin: 0;
    color: #333;
}
.logo-text span:first-of-type {
    font-size: 0.62rem;
    color: #2c6be0;
    margin-top: 2px;
    display: block;
}
.logo-text span:last-of-type {
    font-size: 0.47rem;
    color: #777;
    margin-top: 2px;
    display: block;
}
/* Space main header right side to give room for menu toggle */
.main-header {
    padding-right: 50px !important;
}
.mobile-menu-toggle {
    right: 7px !important;
    top: 13px !important;
    font-size: 22px !important;
    z-index: 1100 !important;
}
/* Optional extra responsiveness */
@media (max-width: 400px) {
    .logo-text {
        max-width: 120px;
        margin-left: 5px;
    }
    .logo-text h1 {
        font-size: 0.7rem;
    }
    .logo-text span:first-of-type {
        font-size: 0.53rem;
    }
    .logo-text span:last-of-type {
        font-size: 0.4rem;
    }
}
