/* 
- Name: megamenu.js - style.css
- Version: 1.0
- Latest update: 29.01.2016.
- Author: Mario Loncarek
- Author web site: http://marioloncarek.com
*/


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Body - not related to megamenu
–––––––––––––––––––––––––––––––––––––––––––––––––– */

body {
    font-family: 'Source Sans Pro', sans-serif;
}

* {
    box-sizing: border-box;
}

a {
    color: #333;
}

.description {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Menu wrapper - full width background */
.menu-wrapper {
    width: 100%;
    background: rgb(48 48 48 / var(--tw-bg-opacity, 1));
    background: #303030; /* Fallback for browsers without CSS custom properties */
}

/* Menu container - content width */
.menu-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.menu-mobile {
    display: none;
    padding: 20px;
}

.menu-mobile:after {
    content: "\f394";
    font-family: "Ionicons";
    font-size: 2.5rem;
    padding: 0;
    float: right;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-25%);
    -ms-transform: translateY(-25%);
    transform: translateY(-25%);
}

/* Dropdown icon - deprecated, using custom arrows in mobile menu */
.menu-dropdown-icon:before {
    display: none;
}

.menu > ul {
    margin: 0 auto;
    width: 100%;
    list-style: none;
    padding: 0;
    position: relative;
    /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
    box-sizing: border-box;
}

.menu > ul:before,
.menu > ul:after {
    content: "";
    display: table;
}

.menu > ul:after {
    clear: both;
}

.menu > ul > li {
    float: left;
    background: #e9e9e9;
    padding: 0;
    margin: 0;
}

.menu > ul > li a {
    text-decoration: none;
    padding: 1.4em 3em;
    display: block;
}

.menu > ul > li:hover {
    background: #f0f0f0;
}

.menu > ul > li {
    position: relative;
}

.menu > ul > li > ul {
    display: none;
    width: auto;
    min-width: 600px;
    max-width: 1200px;
    background: #f0f0f0;
    padding: 20px 40px;
    position: absolute;
    z-index: 99;
    left: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 20px;
}

/* When megamenu is shown, use flexbox layout */
.menu > ul > li:hover > ul:not(.normal-sub) {
    display: flex;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li {
    margin: 0;
    padding-bottom: 0;
    list-style: none;
    min-width: 200px;
    width: auto;
    background: none;
    flex: 1 1 auto;
}

.menu > ul > li > ul > li a {
    color: #777;
    padding: .2em 0;
    width: 100%;
    display: block;
    border-bottom: 1px solid #ccc;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.menu > ul > li > ul > li > ul {
    display: block;
    padding: 0;
    margin: 10px 0 0;
    list-style: none;
    box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
    content: "";
    display: table;
}

.menu > ul > li > ul > li > ul:after {
    clear: both;
}

.menu > ul > li > ul > li > ul > li {
    float: left;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    font-size: .8em;
}

.menu > ul > li > ul > li > ul > li a {
    border: 0;
}

.menu > ul > li > ul.normal-sub {
    width: auto;
    min-width: 250px;
    max-width: 400px;
    left: 0;
    padding: 10px 20px;
    display: block;
}

.menu > ul > li > ul.normal-sub > li {
    width: 100%;
}

.menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 1em 0;
    white-space: nowrap;
    display: block;
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
PC Responsive Adjustments (before mobile breakpoint)
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 1240px) {
    .menu-container {
        padding: 0 20px;
    }
    
    .menu > ul > li > ul {
        width: 100vw;
        padding: 20px;
    }
}

@media only screen and (max-width: 1024px) and (min-width: 944px) {
    .menu > ul > li a {
        padding: 1.5em 2em;
    }
    
    .menu > ul > li > ul {
        padding: 15px 20px;
    }
}


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Mobile Header Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-menu-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

/* Mobile Nav Button */
.mobile-nav-btn {
    display: flex;
    align-items: center;
}

.mobile-nav-btn .nav-btn {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav-btn .search-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #333;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.mobile-nav-btn .search-toggle:hover {
    background: rgba(0,0,0,0.1);
    transform: scale(1.05);
}

.mobile-nav-btn .search-toggle svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

/* Mobile Nav Hamburger Button */
.mobile-nav-btn .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.mobile-nav-btn .hamburger-toggle {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #333;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.mobile-nav-btn .hamburger-toggle:hover {
    background: rgba(0,0,0,0.1);
    transform: scale(1.05);
}

.mobile-nav-btn .hamburger-toggle svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
}

/* Mobile Mega Menu Overlay */
.mobile-mega-menu-overlay {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 999;
}

.mobile-mega-menu-overlay.active {
    display: block;
}

.mobile-mega-menu-content {
    background: #fff;
    height: 100%;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 10px;
    background: transparent;
    box-sizing: border-box;
}

.mobile-menu .gnavi_sub {
    display: block !important;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
}

/* Ensure mobile menu takes full width */
@media only screen and (max-width: 943px) {
    #menu-gnavi.gnavi_sub {
        width: 100% !important;
        max-width: 100% !important;
        margin: 5px 0 0 0 !important;
        padding: 0 !important;
    }
}

.mobile-menu .gnavi_sub > li {
    width: 100%;
    max-width: 100%;
    float: none;
    display: block;
    background: transparent;
    border-bottom: 1px solid #eee;
    box-sizing: border-box;
    overflow: hidden;
}

.mobile-menu .gnavi_sub > li > a {
    padding: 15px 20px;
    width: 100%;
    max-width: 100%;
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.mobile-menu .gnavi_sub > li:hover {
    background: #f8f8f8;
}

.mobile-menu .gnavi_sub > li > ul {
    position: relative;
    display: none;
    width: 100%;
    max-width: 100%;
    background: #f8f8f8;
    padding: 0;
    margin: 0;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    list-style: none;
    box-sizing: border-box;
    overflow: hidden;
}

.mobile-menu .gnavi_sub > li > ul.show-submenu {
    display: block !important;
}

.mobile-menu .gnavi_sub > li > ul > li {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: transparent;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
    overflow: hidden;
}

.mobile-menu .gnavi_sub > li > ul > li > a {
    padding: 12px 20px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.mobile-menu .gnavi_sub > li > ul > li:hover {
    background: #f0f0f0;
}

.mobile-menu .gnavi_sub > li > ul > li > ul {
    display: block;
    background: #f0f0f0;
    padding: 0;
    margin: 0;
    list-style: none;
}

.mobile-menu .gnavi_sub > li > ul > li > ul > li {
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ddd;
}

.mobile-menu .gnavi_sub > li > ul > li > ul > li > a {
    padding: 10px 40px;
    font-size: 13px;
    color: #777;
    text-decoration: none;
    display: block;
}

/* Mobile Menu Arrow */
.mobile-menu-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Body scroll prevention when mobile menu is open */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Body scroll prevention when search modal is open */
body.search-modal-open {
    overflow: hidden;
}

/* Hide desktop elements on mobile */
@media only screen and (max-width: 943px) {
    .mobile-header {
        display: flex;
    }
    
    .gnavi {
        display: none;
    }
    
    /* Hide header gnavi menu specifically */
    .gnavi nav .gnavi.nav-text,
    .gnavi nav ul.gnavi.nav-text,
    #menu-topnavi {
        display: none !important;
    }
    
    body {
        padding-top: 60px;
    }
    
    /* Hide the existing mega menu wrapper in template-parts on mobile (but not mobile menu itself) */
    .menu-wrapper {
        display: none;
    }
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Desktop Mobile menu fallback (legacy)
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@media only screen and (max-width: 959px) {
    .menu-container {
        width: 100%;
    }
    .menu-mobile {
        display: block;
    }
    .menu-dropdown-icon:before {
        display: block;
    }
    .menu > ul {
        display: none;
    }
    .menu > ul > li {
        width: 100%;
        float: none;
        display: block;
    }
    .menu > ul > li a {
        padding: 1.5em;
        width: 100%;
        display: block;
    }
    .menu > ul > li > ul {
        position: relative;
        display: none;
    }
    .menu > ul > li > ul.normal-sub {
        width: 100%;
    }
    .menu > ul > li > ul > li {
        float: none;
        width: 100%;
        margin-top: 20px;
    }
    .menu > ul > li > ul > li:first-child {
        margin: 0;
    }
    .menu > ul > li > ul > li > ul {
        position: relative;
    }
    .menu > ul > li > ul > li > ul > li {
        float: none;
    }
    .menu .show-on-mobile {
        display: block !important;
    }
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Search Modal Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Search Button in Navigation */
.nav-btn {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-btn li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn .search {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.search-toggle {
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    color: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.search-toggle:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: scale(1.05);
}

.search-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

/* Search Modal Overlay */
.search-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.search-modal-overlay.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 10vh;
}

/* Search Modal */
.search-modal {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Search Modal Header */
.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
}

.search-modal-header h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.search-modal-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    border-radius: 6px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.search-modal-close svg {
    width: 20px;
    height: 20px;
}

/* Search Modal Content */
.search-modal-content {
    padding: 24px;
}

/* Search Form */
.search-form {
    margin-bottom: 32px;
}

.search-input-container {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.search-input-container:focus-within {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 16px 20px;
    font-size: 16px;
    outline: none;
    border-radius: 50px;
}

.search-input::placeholder {
    color: #6c757d;
}

.search-submit {
    background: #007bff;
    border: none;
    padding: 12px 16px;
    margin-right: 4px;
    border-radius: 50px;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.search-submit svg {
    width: 18px;
    height: 18px;
}

/* Search Suggestions */
.search-suggestions h3 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
    color: #495057;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-tag {
    background: #e9ecef;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.search-tag:hover {
    background: #007bff;
    color: white;
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media only screen and (max-width: 768px) {
    .search-modal-overlay {
        padding-top: 5vh;
    }
    
    .search-modal {
        width: 95%;
        max-height: 85vh;
    }
    
    .search-modal-header {
        padding: 16px 20px;
    }
    
    .search-modal-header h2 {
        font-size: 18px;
    }
    
    .search-modal-content {
        padding: 20px;
    }
    
    .search-input {
        padding: 14px 18px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .search-tags {
        gap: 6px;
    }
    
    .search-tag {
        padding: 6px 12px;
        font-size: 13px;
    }
}

/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Hamburger Menu Modal Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* Hamburger Button in Navigation */
.nav-btn .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hamburger-toggle {
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    color: #fff;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.hamburger-toggle:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: scale(1.05);
}

.hamburger-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

/* Hamburger Modal Overlay */
.hamburger-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    backdrop-filter: blur(8px);
}

.hamburger-modal-overlay.active {
    display: block;
    animation: hamburgerFadeIn 0.4s ease-out;
}

@keyframes hamburgerFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Hamburger Modal */
.hamburger-modal {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    color: #fff;
}

/* Hamburger Modal Header */
.hamburger-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hamburger-modal-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1); /* Make logo white */
}

.hamburger-modal-close {
    background: none;
    border: none;
    padding: 12px;
    cursor: pointer;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.hamburger-modal-close svg {
    width: 28px;
    height: 28px;
}

/* Hamburger Modal Content */
.hamburger-modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    text-align: center;
}

/* Hamburger Top Navigation (Mobile gnavi) */
.hamburger-top-nav {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hamburger-top-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.hamburger-top-menu li {
    margin: 0;
    padding: 0;
}

.hamburger-top-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hamburger-top-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hamburger Navigation */
.hamburger-nav {
    margin-bottom: 80px;
}

.hamburger-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hamburger-menu-list li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: hamburgerSlideIn 0.6s ease-out forwards;
}

.hamburger-menu-list li:nth-child(1) { animation-delay: 0.1s; }
.hamburger-menu-list li:nth-child(2) { animation-delay: 0.2s; }
.hamburger-menu-list li:nth-child(3) { animation-delay: 0.3s; }
.hamburger-menu-list li:nth-child(4) { animation-delay: 0.4s; }
.hamburger-menu-list li:nth-child(5) { animation-delay: 0.5s; }
.hamburger-menu-list li:nth-child(6) { animation-delay: 0.6s; }

@keyframes hamburgerSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hamburger-menu-list a {
    color: #fff;
    text-decoration: none;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    transition: all 0.3s ease;
    display: block;
    padding: 10px 20px;
    border-radius: 8px;
}

.hamburger-menu-list a:hover {
    color: #007bff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

/* Hamburger Menu Footer */
.hamburger-menu-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 800px;
    margin-top: auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hamburger-menu-info,
.hamburger-menu-social {
    flex: 1;
    text-align: left;
}

.hamburger-menu-info h3,
.hamburger-menu-social h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ccc;
    font-weight: 600;
}

.hamburger-menu-info p {
    margin: 8px 0;
    font-size: 1rem;
    color: #fff;
}

.hamburger-menu-info a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hamburger-menu-info a:hover {
    color: #fff;
}

/* Mobile Responsive for Hamburger Modal */
@media only screen and (max-width: 768px) {
    .hamburger-modal-header {
        padding: 20px 30px;
    }
    
    .hamburger-modal-logo img {
        height: 40px;
    }
    
    .hamburger-modal-content {
        padding: 40px 30px;
    }
    
    .hamburger-top-nav {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }
    
    .hamburger-top-menu {
        gap: 10px;
    }
    
    .hamburger-top-menu a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .hamburger-menu-list a {
        font-size: 2.2rem;
        padding: 8px 15px;
    }
    
    .hamburger-menu-footer {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hamburger-menu-info,
    .hamburger-menu-social {
        text-align: center;
    }
}

/* Body scroll prevention when hamburger modal is open */
body.hamburger-modal-open {
    overflow: hidden;
}