/* ============================================================
   Budget Moving Services – Mobile Nav CSS
   Flash Moving-style two-tier header
   ============================================================ */

/* ── CSS Variables (inherits from main style.css) ── */
:root {
    --nav-bg:          #1a3c8f;   /* your --color-primary */
    --nav-accent:      #f7941d;   /* your --color-secondary / orange CTA */
    --nav-white:       #ffffff;
    --nav-utility-bg:  #e02b2b;   /* red utility top bar */
    --nav-text-light:  rgba(255,255,255,0.85);
    --nav-border:      rgba(255,255,255,0.12);
    --nav-drawer-bg:   #ffffff;
    --nav-drawer-text: #1a1a2e;
    --nav-transition:  0.25s ease;
    --header-height-utility: 36px;
    --header-height-main:    64px;
}

/* ── Reset old single-bar header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
    height: auto;               /* override old fixed height */
    display: block;
    box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

/* ============================================================
   TOP UTILITY BAR
   ============================================================ */
.header-utility-bar {
    background: var(--nav-utility-bg);
    height: var(--header-height-utility);
    display: flex;
    align-items: center;
}

.utility-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

.utility-phone,
.utility-email,
.utility-promo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--nav-text-light);
    text-decoration: none;
    transition: color var(--nav-transition);
}

.utility-phone:hover,
.utility-email:hover {
    color: var(--nav-white);
}

.utility-promo {
    margin-left: auto;    /* push email to the right */
    color: var(--nav-white);
    opacity: 0.96;
    text-align: right;
}

/* ============================================================
   MAIN NAV BAR
   ============================================================ */
.header-main-bar {
    background: var(--nav-bg);
    height: var(--header-height-main);
    display: flex;
    align-items: center;
}

.main-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

/* ── Logo ── */
.site-logo { flex-shrink: 0; }
.site-logo img,
.site-logo .custom-logo { height: 46px; width: auto; }
.site-logo a { display: flex; align-items: center; text-decoration: none; }
.site-logo .logo-text {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--nav-white);
    line-height: 1.1;
}
.site-logo .logo-text span { color: var(--nav-accent); }
.site-logo .logo-text small {
    display: block;
    font-size: 0.55em;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--nav-text-light);
}

/* ── Desktop Nav ── */
.desktop-nav { flex: 1; display: flex; justify-content: center; }

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.desktop-menu > li { position: relative; }

.desktop-menu > li > a {
    display: block;
    padding: 8px 13px;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--nav-text-light);
    border-radius: 4px;
    transition: all var(--nav-transition);
    text-decoration: none;
    white-space: nowrap;
}

.desktop-menu > li > a:hover,
.desktop-menu > li.current-menu-item > a,
.desktop-menu > li.current-menu-parent > a {
    color: var(--nav-white);
    background: rgba(255,255,255,0.12);
}

/* Desktop Dropdowns */
.desktop-menu .sub-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 220px;
    background: var(--nav-white);
    border-radius: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: all var(--nav-transition);
    list-style: none;
    padding: 8px;
    z-index: 200;
}

.desktop-menu li:hover > .sub-menu,
.desktop-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-menu .sub-menu li a {
    display: block;
    padding: 9px 14px;
    font-size: 0.87rem;
    font-weight: 500;
    color: #333;
    border-radius: 4px;
    transition: all var(--nav-transition);
    text-decoration: none;
}

.desktop-menu .sub-menu li a:hover {
    color: var(--nav-bg);
    background: #f0f4ff;
}

/* ── Desktop CTAs ── */
.desktop-ctas {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.desktop-ctas .header-phone {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e02b2b !important;
    color: #ffffff !important;
    border: 2px solid #111827 !important;
    border-radius: 999px;
    font-size: 0;
    text-decoration: none;
}

.desktop-ctas .header-phone svg {
    width: 20px;
    height: 20px;
    color: #ffffff !important;
    stroke: currentColor;
}

.desktop-ctas .header-phone span {
    display: none !important;
}

.desktop-ctas .header-phone:hover {
    background: #c91717 !important;
    color: #ffffff !important;
}

.desktop-book-btn {
    background: var(--nav-accent) !important;
    color: var(--nav-white) !important;
    padding: 9px 18px !important;
    font-size: 0.88rem !important;
    border-radius: 4px !important;
    white-space: nowrap;
}

.desktop-book-btn:hover {
    background: #e07f0a !important;
    transform: translateY(-1px);
}

/* ── Mobile Controls (hidden on desktop) ── */
.mobile-controls {
    display: none;
    align-items: center;
    gap: 8px;
}

/* Mobile call icon button */
.mobile-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e02b2b;
    color: #ffffff;
    border: 2px solid #111827;
    text-decoration: none;
    transition: background var(--nav-transition);
    flex-shrink: 0;
}
.mobile-call-btn:hover { background: #c91717; }

/* Mobile "Book A Move" pill button */
.mobile-book-btn {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    background: var(--nav-accent);
    color: var(--nav-white);
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--nav-transition);
}
.mobile-book-btn:hover { background: #e07f0a; }

/* Hamburger button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 6px;
    background: transparent;
    border: 2px solid #111827;
    cursor: pointer;
    border-radius: 4px;
    transition: background var(--nav-transition);
    flex-shrink: 0;
}
.hamburger-btn:hover { background: rgba(15,23,42,0.06); }

.ham-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--nav-white);
    border-radius: 2px;
    transition: all var(--nav-transition);
}

/* Hamburger → X animation */
.hamburger-btn.is-active .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.is-active .ham-bar:nth-child(2) { opacity: 0; }
.hamburger-btn.is-active .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ============================================================
   DRAWER OVERLAY
   ============================================================ */
.drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1099;
    opacity: 0;
    transition: opacity var(--nav-transition);
}
.drawer-overlay.is-visible {
    display: block;
    opacity: 1;
}


/* ============================================================
   MOBILE SLIDE-IN DRAWER
   ============================================================ */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(420px, 92vw);
    max-width: 92vw;
    height: 100%;
    background: var(--nav-drawer-bg);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transition: right 0.3s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -4px 0 32px rgba(0,0,0,0.18);
}
.mobile-drawer.is-open { right: 0; }

/* Body lock when drawer is open */
body.drawer-is-open,
body.mobile-drawer-open { overflow: hidden; }

/* Drawer Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--nav-bg);
    flex-shrink: 0;
}

.drawer-logo img,
.drawer-logo .custom-logo { height: 40px; width: auto; }
.drawer-logo .logo-text {
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--nav-white);
}
.drawer-logo .logo-text span { color: var(--nav-accent); }

.drawer-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.12);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--nav-white);
    transition: background var(--nav-transition);
    flex-shrink: 0;
}
.drawer-close-btn:hover { background: rgba(255,255,255,0.22); }

/* Drawer Nav */
.drawer-nav-wrap { flex: 1; padding: 8px 0; overflow-y: auto; }

.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-menu li { border-bottom: 1px solid #f0f0f0; }
.drawer-menu li:last-child { border-bottom: none; }
.drawer-menu li.has-children {
    display: grid;
    grid-template-columns: 1fr 48px;
    align-items: center;
}

.drawer-link {
    flex: 1;
    display: block;
    padding: 14px 20px;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--nav-drawer-text);
    text-decoration: none;
    transition: color var(--nav-transition), background var(--nav-transition);
}

.drawer-link:hover { color: var(--nav-bg); background: #f0f4ff; }

.drawer-menu > li.has-children > .drawer-link {
    color: #111827;
    font-weight: 800;
}

/* Accordion toggle button */
.drawer-submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 48px;
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
    transition: transform var(--nav-transition), color var(--nav-transition);
    flex-shrink: 0;
}
.drawer-submenu-toggle:hover { color: var(--nav-bg); }
.drawer-submenu-toggle svg { transition: transform var(--nav-transition); }
.drawer-submenu-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* Submenu */
.drawer-submenu {
    grid-column: 1 / -1;
    list-style: none;
    padding: 4px 0 4px 20px;
    margin: 0;
    background: #f8f9ff;
    border-top: 1px solid #edf0f8;
}

.drawer-submenu li { border-bottom: 1px solid #edf0f8; }
.drawer-submenu .drawer-link {
    font-size: 0.87rem;
    font-weight: 700;
    padding: 11px 16px;
    color: #0034FF;
}
.drawer-submenu .drawer-link:hover { color: var(--nav-bg); }

/* Nested submenus */
.drawer-submenu .drawer-submenu { padding-left: 16px; background: #f0f2fc; }

/* Drawer Footer */
.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid #eee;
    flex-shrink: 0;
}

.drawer-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #f0f4ff;
    color: var(--nav-bg);
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--nav-transition);
}
.drawer-call-btn:hover { background: #dde4ff; }

.drawer-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    background: var(--nav-accent);
    color: var(--nav-white);
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background var(--nav-transition);
}
.drawer-book-btn:hover { background: #e07f0a; }


/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet: hide desktop CTAs, show mobile controls */
@media (max-width: 1024px) {
    .desktop-ctas { display: none; }
    .desktop-nav  { display: none; }
    .mobile-controls { display: flex; }
    .header-utility-bar { display: none; } /* hide on tablet/mobile */
}

/* Mobile: tighten main bar padding */
@media (max-width: 768px) {
    .container { padding-left: 16px; padding-right: 16px; }
    .header-main-bar { height: 58px; }
    .site-logo img,
    .site-logo .custom-logo { height: 38px; }
    .site-logo .logo-text { font-size: 1rem; }
    .mobile-book-btn { padding: 7px 10px; font-size: 0.78rem; }
}

@media (max-width: 380px) {
    .mobile-book-btn { display: none; } /* very small screens: just phone icon + hamburger */
}

/* ============================================================
   PREMIUM WHITE / TRANSLUCENT HEADER OVERRIDES
   ============================================================ */
.site-header {
    background: rgba(255,255,255,0.98) !important;
    box-shadow: 0 1px 0 rgba(15,23,42,0.08) !important;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled,
.site-header.scrolled {
    background: rgba(255,255,255,0.84) !important;
    box-shadow: 0 10px 32px rgba(15,23,42,0.10) !important;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.header-utility-bar,
.header-main-bar {
    transition: background 0.25s ease, border-color 0.25s ease;
}

.header-main-bar {
    background: transparent !important;
}

.header-utility-bar {
    background: #e02b2b !important;
}

.header-utility-bar {
    border-bottom: 1px solid rgba(17,24,39,0.16);
}

.utility-phone,
.utility-email,
.utility-promo,
.desktop-menu > li > a,
.site-logo .logo-text,
.hamburger-btn,
.drawer-close-btn {
    color: #111827 !important;
}

.utility-phone,
.utility-email,
.utility-promo {
    color: #ffffff !important;
}

.utility-phone:hover,
.utility-email:hover,
.desktop-ctas .header-phone:hover {
    background: #c91717 !important;
    color: #ffffff !important;
    border-color: #111827 !important;
}

.desktop-menu > li > a:hover,
.desktop-menu > li.current-menu-item > a,
.desktop-menu > li.current-menu-parent > a {
    color: #ffffff !important;
    background: var(--color-primary) !important;
}

.site-logo {
    flex: 0 0 auto;
    margin-left: -6px;
}

.site-logo img,
.site-logo .custom-logo {
    height: 64px !important;
    width: auto;
    max-width: 280px;
}

.site-logo .logo-text {
    font-size: 1.35rem !important;
}

.site-logo .logo-text small {
    color: #4b5563 !important;
}

.header-main-bar {
    height: 82px !important;
}

.header-main-bar .container {
    max-width: 1360px;
    padding-left: 14px;
    padding-right: 26px;
}

.main-bar-inner {
    gap: 38px;
}

.desktop-nav {
    justify-content: flex-start !important;
    margin-left: 34px;
}

.desktop-menu {
    gap: 4px;
}

.desktop-menu > li > a {
    padding: 10px 13px;
}

.mobile-call-btn {
    background: #e02b2b !important;
    color: #ffffff !important;
    border: 2px solid #111827 !important;
}

.mobile-call-btn:hover {
    background: #c91717 !important;
}

.hamburger-btn:hover,
.drawer-close-btn:hover {
    background: rgba(15,23,42,0.08) !important;
}

.ham-bar {
    background: #111827 !important;
}

.drawer-header {
    background: #ffffff !important;
    border-bottom: 1px solid #eef1f5;
}

.drawer-logo .logo-text {
    color: #111827 !important;
}

/* ============================================================
   CONVERSION HEADER: logo | CTAs | hamburger
   ============================================================ */
.main-bar-inner {
    display: grid !important;
    grid-template-columns: minmax(180px, 1fr) auto minmax(48px, 1fr);
    align-items: center;
    gap: 24px;
}

.desktop-nav,
.desktop-ctas,
.mobile-controls {
    display: none !important;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    justify-self: center;
}

.header-call-btn {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e02b2b;
    color: #ffffff;
    border: 2px solid #111827;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(224,43,43,0.22);
    transition: transform var(--nav-transition), background var(--nav-transition), box-shadow var(--nav-transition);
}

.header-call-btn:hover,
.header-call-btn:focus {
    background: #c91717;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(224,43,43,0.28);
}

.header-book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    background: var(--nav-accent);
    color: #ffffff;
    border-radius: 5px;
    font-family: var(--font-heading, 'Montserrat', sans-serif);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(247,148,29,0.24);
    transition: transform var(--nav-transition), background var(--nav-transition), box-shadow var(--nav-transition);
}

.header-book-btn:hover,
.header-book-btn:focus {
    background: #e07f0a;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(247,148,29,0.30);
}

.hamburger-btn {
    justify-self: end;
    display: inline-flex !important;
    width: 46px;
    height: 46px;
}

.site-header.is-scrolled .header-main-bar {
    height: 70px !important;
}

.site-header.is-scrolled .site-logo img,
.site-header.is-scrolled .site-logo .custom-logo {
    height: 54px !important;
}

.site-header.is-scrolled .header-call-btn,
.site-header.is-scrolled .header-book-btn,
.site-header.is-scrolled .hamburger-btn {
    min-height: 40px;
}

.site-header.is-scrolled .header-call-btn,
.site-header.is-scrolled .hamburger-btn {
    width: 40px;
    height: 40px;
}

.mobile-drawer {
    width: min(460px, 94vw);
    max-width: 94vw;
}

.drawer-menu > li > .drawer-link {
    min-height: 54px;
    display: flex;
    align-items: center;
}

.drawer-menu > li:not(.has-children) > .drawer-link {
    font-weight: 800;
    color: #111827;
}

.drawer-submenu-toggle {
    color: #111827;
}

.drawer-call-btn {
    background: #e02b2b;
    color: #ffffff;
    border: 2px solid #111827;
}

.drawer-call-btn:hover {
    background: #c91717;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .main-bar-inner {
        grid-template-columns: minmax(126px, 1fr) auto auto;
        gap: 12px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-call-btn,
    .hamburger-btn {
        width: 42px;
        height: 42px;
    }

    .header-book-btn {
        min-height: 42px;
        padding: 0 14px;
        font-size: 0.82rem;
    }
}

@media (max-width: 640px) {
    .header-main-bar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .main-bar-inner {
        grid-template-columns: minmax(102px, 1fr) auto auto;
        gap: 8px;
    }

    .site-logo img,
    .site-logo .custom-logo {
        max-width: 154px;
    }

    .header-call-btn,
    .hamburger-btn {
        width: 38px;
        height: 38px;
    }

    .header-call-btn svg {
        width: 18px;
        height: 18px;
    }

    .header-book-btn {
        min-height: 38px;
        padding: 0 10px;
        font-size: 0.74rem;
    }

    .hamburger-btn {
        gap: 4px;
    }

    .ham-bar {
        width: 20px;
    }

    .mobile-drawer {
        width: 100vw;
        max-width: 100vw;
    }
}

@media (max-width: 360px) {
    .header-book-btn {
        max-width: 88px;
        padding: 0 8px;
        text-align: center;
        white-space: normal;
        line-height: 1.05;
    }
}

/* ============================================================
   DESKTOP / MOBILE HEADER SPLIT
   Desktop: logo + dropdown navigation
   Mobile/tablet: logo + phone + outlined Book a Move + hamburger
   ============================================================ */
@media (min-width: 1025px) {
    .main-bar-inner {
        display: grid !important;
        grid-template-columns: minmax(220px, 1fr) minmax(0, auto) minmax(220px, 1fr);
        gap: 28px;
    }

    .desktop-nav {
        display: flex !important;
        align-items: center;
        justify-content: center !important;
        margin-left: 0;
        min-width: 0;
    }

    .site-logo {
        justify-self: start;
    }

    .header-actions {
        display: inline-flex !important;
        justify-self: end;
    }

    .bms-fixed-desktop-menu {
        gap: 6px;
    }

    .desktop-menu > li > a {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        min-height: 44px;
        padding: 10px 14px;
        color: #111827 !important;
        font-weight: 800;
    }

    .desktop-menu > li > a:hover,
    .desktop-menu > li.current-menu-item > a,
    .desktop-menu > li.current-menu-parent > a {
        color: #ffffff !important;
        background: var(--color-primary) !important;
    }

    .desktop-menu-chevron {
        flex: 0 0 auto;
        transition: transform var(--nav-transition);
    }

    .desktop-menu li:hover > a .desktop-menu-chevron,
    .desktop-menu li:focus-within > a .desktop-menu-chevron {
        transform: rotate(180deg);
    }

    .desktop-menu .sub-menu {
        top: calc(100% + 10px);
        min-width: 260px;
        border: 1px solid rgba(15,23,42,0.08);
    }

    .desktop-menu .sub-menu li a {
        color: #111827;
        font-weight: 700;
    }

    .hamburger-btn,
    .mobile-controls,
    .desktop-ctas {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .header-utility-bar {
        display: none !important;
    }

    .header-main-bar {
        height: 62px !important;
    }

    .header-main-bar .container {
        max-width: none;
        padding-left: 16px;
        padding-right: 16px;
    }

    .main-bar-inner {
        display: grid !important;
        grid-template-columns: minmax(96px, 1fr) auto auto;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .desktop-nav {
        display: none !important;
    }

    .site-logo {
        display: flex !important;
        justify-self: start;
        margin-left: 0;
        min-width: 0;
    }

    .site-logo a {
        min-width: 0;
    }

    .site-logo img,
    .site-logo .custom-logo {
        height: 42px !important;
        max-width: 160px !important;
        object-fit: contain;
    }

    .site-logo .logo-text {
        color: #111827 !important;
        font-size: 0.95rem !important;
        line-height: 1.05;
    }

    .header-actions {
        display: inline-flex !important;
        justify-self: end;
        gap: 8px;
    }

    .header-book-btn {
        display: inline-flex !important;
        min-height: 42px !important;
        padding: 0 12px !important;
        background: transparent !important;
        color: #111827 !important;
        border: 2px solid #111827 !important;
        box-shadow: none !important;
        border-radius: 5px;
        font-size: 0.78rem !important;
    }

    .header-call-btn {
        display: inline-flex !important;
        width: 42px !important;
        height: 42px !important;
        min-height: 42px !important;
    }

    .hamburger-btn {
        display: inline-flex !important;
        justify-self: end;
        width: 42px !important;
        height: 42px !important;
        min-height: 42px !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: relative;
        z-index: 1002;
    }
}

@media (max-width: 1024px) {
    .header-main-bar {
        height: 68px !important;
    }
    .site-logo img,
    .site-logo .custom-logo {
        height: 48px !important;
        max-width: 220px;
    }
    .site-logo .logo-text {
        font-size: 1.08rem !important;
    }
}

@media (max-width: 768px) {
    .header-main-bar {
        height: 60px !important;
    }
    .site-logo img,
    .site-logo .custom-logo {
        height: 40px !important;
        max-width: 140px !important;
    }
}

@media (max-width: 430px) {
    .header-main-bar .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .main-bar-inner {
        grid-template-columns: minmax(72px, 1fr) auto auto;
        gap: 6px;
    }

    .site-logo img,
    .site-logo .custom-logo {
        height: 34px !important;
        max-width: 112px !important;
    }

    .site-logo .logo-text {
        font-size: 0.78rem !important;
    }

    .header-actions {
        gap: 6px;
    }

    .header-call-btn,
    .hamburger-btn {
        width: 36px !important;
        height: 36px !important;
        min-height: 36px !important;
    }

    .header-book-btn {
        min-height: 36px !important;
        padding: 0 8px !important;
        font-size: 0.68rem !important;
    }
}

@media (max-width: 360px) {
    .header-book-btn {
        display: none !important;
    }
}

.header-book-btn,
.header-book-btn:hover,
.header-book-btn:focus {
    background: transparent !important;
    color: #111827 !important;
    border: 2px solid #111827 !important;
    box-shadow: none !important;
}
