/* Airo Shot Blast — header & footer v2 */

.asb-header-v2 {
    overflow: visible;
}

:root {
    --asb-navy: #0f172a;
    --asb-navy-soft: #1e293b;
    --asb-navy-deep: #141a2a;
    --asb-gold: #f4cb10;
    --asb-gold-dark: #c9a006;
    --asb-gold-hover: #e5b80a;
    --asb-slate: #94a3b8;
    --asb-border: rgba(148, 163, 184, 0.2);
    --asb-header-h: 104px;
    /* Logo: height caps display size; max-width can shrink further — keep width generous for ® + text */
    /* Tall/stacked logo art (~1.24:1) — height drives size; ® needs large mark in source file */
    --asb-logo-h-desktop: 96px;
    --asb-logo-w-max-desktop: none;
    --asb-logo-h-mobile: 60px;
    --asb-logo-w-max-mobile: min(320px, 82vw);
    --asb-logo-h-tablet: 68px;
    --asb-logo-w-max-tablet: 340px;
}

/* ─── Header ─── */

.asb-header-v2 .top-header {
    display: none;
}

.asb-header-v2 .asb-topbar {
    background: var(--asb-navy);
    border-bottom: 1px solid var(--asb-border);
    font-size: 13px;
    color: var(--asb-slate);
}

.asb-header-v2 .asb-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px 16px;
    min-height: 36px;
    padding: 6px 0;
}

.asb-header-v2 .asb-topbar-trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.asb-header-v2 .asb-topbar-trust li {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.asb-header-v2 .asb-topbar-trust .iconify {
    color: var(--asb-gold);
    font-size: 15px;
}

.asb-header-v2 .asb-topbar-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.asb-header-v2 .asb-topbar-contact a {
    color: #e2e8f0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.asb-header-v2 .asb-topbar-contact a:hover {
    color: var(--asb-gold);
}

.asb-header-v2 .asb-topbar-contact .iconify {
    font-size: 16px;
    color: var(--asb-gold);
}

.asb-header-v2 .sticky-menu {
    position: sticky;
    top: 0;
    z-index: 9999;
    overflow: visible;
}

/* jQuery sticky wraps .sticky-menu — legacy style.css forced 44px and collapsed the nav over page content */
.asb-header-v2 .sticky-wrapper {
    height: auto !important;
    min-height: var(--asb-header-h);
}

.asb-header-v2 .sticky-wrapper.is-sticky {
    height: auto !important;
}

/* Sticky plugin sets transform on wrapper — keep drawer outside .sticky-menu in markup */
.asb-header-v2 .asb-mobile-overlay,
.asb-header-v2 .asb-mobile-drawer {
    z-index: 10050;
}

.asb-header-v2 .mainmenu-area {
    background: var(--asb-navy-deep);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.12);
}

.asb-header-v2 .mainmenu-area.menu-animation {
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.2);
}

.asb-header-v2 .asb-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: var(--asb-header-h);
}

.asb-header-v2 .asb-brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.asb-header-v2 .asb-brand a {
    display: block;
    line-height: 0;
}

.asb-header-v2 .asb-brand .asb-logo-img,
.asb-header-v2 .asb-brand img {
    width: auto !important;
    height: var(--asb-logo-h-desktop) !important;
    max-width: var(--asb-logo-w-max-desktop);
    object-fit: contain;
    object-position: left center;
}

/* Override Bootstrap .img-fluid if present on legacy markup */
.asb-header-v2 .asb-brand .img-fluid {
    max-width: none;
}

.asb-header-v2 .asb-nav-desktop {
    flex: 1;
    display: none;
    justify-content: center;
}

@media (min-width: 992px) {
    .asb-header-v2 .asb-nav-desktop {
        display: flex;
    }
}

.asb-header-v2 .asb-nav-desktop .navbar {
    padding: 0;
    width: 100%;
    justify-content: center;
}

.asb-header-v2 .asb-nav-desktop .navbar-nav {
    flex-direction: row;
    align-items: center;
}

.asb-header-v2 .mainmenu-area .navbar-nav .nav-link {
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    padding: 26px 18px;
    transition: color 0.2s ease, background 0.2s ease;
}

.asb-header-v2 .mainmenu-area .navbar ul li a:hover,
.asb-header-v2 .mainmenu-area .navbar ul li.active > a,
.asb-header-v2 .mainmenu-area .navbar ul li.active a.nav-link {
    background: transparent;
    color: var(--asb-gold);
    box-shadow: none;
}

.asb-header-v2 .mainmenu-area .navbar ul li.dropdown > a:after {
    color: var(--asb-gold);
}

.asb-header-v2 .dropdown-menu {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
    padding: 6px 0;
    margin-top: 0;
}

.asb-header-v2 .dropdown-menu li > a {
    padding: 10px 18px;
    font-size: 14px;
}

.asb-header-v2 .asb-nav-actions {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

@media (min-width: 992px) {
    .asb-header-v2 .asb-nav-actions {
        display: flex;
    }
}

/* Tablet / small laptop (~1024px): hide call & WhatsApp to fit nav + quote CTA */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .asb-header-v2 .asb-nav-actions .asb-icon-link--call,
    .asb-header-v2 .asb-nav-actions .asb-icon-link--wa {
        display: none !important;
    }

    .asb-header-v2 .asb-btn-quote {
        padding: 10px 16px;
        font-size: 13px;
    }

    .asb-header-v2 .mainmenu-area .navbar-nav .nav-link {
        padding: 28px 12px;
        font-size: 14px;
    }
}

.asb-header-v2 .asb-search-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--asb-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.asb-header-v2 .asb-search-toggle:hover {
    border-color: var(--asb-gold);
    background: rgba(244, 203, 16, 0.1);
    color: var(--asb-gold);
}

.asb-header-v2 .asb-icon-link {
    width: 42px;
    height: 42px;
    border: 1px solid var(--asb-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.asb-header-v2 .asb-icon-link:hover {
    border-color: var(--asb-gold);
    background: rgba(244, 203, 16, 0.1);
    color: var(--asb-gold);
}

.asb-header-v2 .asb-icon-link .iconify {
    font-size: 20px;
}

.asb-header-v2 .asb-btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--asb-gold);
    color: var(--asb-navy);
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 14px rgba(244, 203, 16, 0.35);
}

.asb-header-v2 .asb-btn-quote:hover {
    background: var(--asb-gold-hover);
    color: var(--asb-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 203, 16, 0.45);
}

.asb-header-v2 .asb-icon-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ─── Mobile / tablet header ─── */

.asb-header-v2 .asb-mobile-header {
    background: var(--asb-navy-deep);
    border-bottom: 1px solid var(--asb-border);
}

.asb-header-v2 .asb-mobile-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 16px;
    min-height: 64px;
}

.asb-header-v2 .asb-mobile-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.asb-header-v2 .asb-mobile-search-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--asb-border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.asb-header-v2 .asb-mobile-search-btn:hover {
    border-color: var(--asb-gold);
    background: rgba(244, 203, 16, 0.1);
    color: var(--asb-gold);
}

.asb-header-v2 .asb-mobile-brand {
    display: block;
    line-height: 0;
    flex: 1;
    min-width: 0;
}

.asb-header-v2 .asb-mobile-brand .asb-logo-img,
.asb-header-v2 .asb-mobile-brand img {
    height: var(--asb-logo-h-mobile);
    width: auto !important;
    max-width: var(--asb-logo-w-max-mobile);
    object-fit: contain;
    object-position: left center;
}

.asb-header-v2 .asb-hamburger {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border: 1px solid var(--asb-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.asb-header-v2 .asb-hamburger:hover {
    border-color: var(--asb-gold);
    background: rgba(244, 203, 16, 0.12);
}

.asb-header-v2 .asb-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.asb-header-v2 .asb-hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.asb-header-v2 .asb-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.asb-header-v2 .asb-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.asb-header-v2 .asb-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.asb-header-v2 .asb-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.asb-header-v2 .asb-mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 90vw);
    height: 100%;
    max-height: 100dvh;
    background: linear-gradient(180deg, #141a2a 0%, #0f172a 100%);
    z-index: 10001;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
}

.asb-header-v2 .asb-mobile-drawer.is-open {
    transform: translateX(0) !important;
    visibility: visible;
    pointer-events: auto;
}

body.asb-menu-open {
    overflow: hidden;
}

.asb-header-v2 .asb-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border-bottom: 1px solid var(--asb-border);
}

.asb-header-v2 .asb-drawer-logo img {
    height: 56px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    object-position: left center;
}

.asb-header-v2 .asb-drawer-close {
    width: 40px;
    height: 40px;
    border: 1px solid var(--asb-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.asb-header-v2 .asb-drawer-close:hover {
    background: rgba(244, 203, 16, 0.15);
    border-color: var(--asb-gold);
    color: var(--asb-gold);
}

.asb-header-v2 .asb-drawer-cta {
    padding: 16px 18px;
    border-bottom: 1px solid var(--asb-border);
}

.asb-header-v2 .asb-btn-quote-block {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
}

.asb-header-v2 .asb-drawer-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.asb-header-v2 .asb-drawer-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.asb-header-v2 .asb-drawer-action:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.asb-header-v2 .asb-drawer-action-call {
    background: #1e40af;
}

.asb-header-v2 .asb-drawer-action-wa {
    background: #15803d;
}

.asb-header-v2 .asb-drawer-search-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    width: calc(100% - 36px);
    margin: 14px 18px;
    padding: 12px 14px;
    border: 1px solid var(--asb-border);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.asb-header-v2 .asb-drawer-search-trigger:hover {
    border-color: var(--asb-gold);
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
}

.asb-header-v2 .asb-drawer-search-trigger .iconify:first-child {
    color: var(--asb-gold);
    font-size: 20px;
    flex-shrink: 0;
}

.asb-header-v2 .asb-drawer-search-trigger span:nth-child(2) {
    flex: 1;
    min-width: 0;
}

.asb-header-v2 .asb-drawer-search-mic {
    font-size: 18px;
    color: #64748b;
    flex-shrink: 0;
}

.asb-header-v2 .asb-drawer-nav {
    flex: 1;
    padding: 8px 0;
}

.asb-header-v2 .asb-drawer-nav > ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.asb-header-v2 .asb-drawer-nav > ul > li > a,
.asb-header-v2 .asb-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 18px;
    color: #e2e8f0;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.asb-header-v2 .asb-drawer-nav > ul > li > a:hover,
.asb-header-v2 .asb-sub-toggle:hover {
    background: rgba(244, 203, 16, 0.08);
    color: var(--asb-gold);
    padding-left: 22px;
}

.asb-header-v2 .asb-sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(0, 0, 0, 0.2);
}

.asb-header-v2 .asb-has-sub.is-open .asb-sub-menu {
    max-height: 50vh;
    overflow-y: auto;
}

.asb-header-v2 .asb-has-sub.is-open .asb-sub-toggle .iconify {
    transform: rotate(180deg);
}

.asb-header-v2 .asb-sub-toggle .iconify {
    transition: transform 0.25s ease;
    font-size: 20px;
}

.asb-header-v2 .asb-sub-menu a {
    display: block;
    padding: 11px 18px 11px 28px;
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

.asb-header-v2 .asb-sub-menu a:hover {
    color: var(--asb-gold);
    background: rgba(244, 203, 16, 0.06);
}

.asb-header-v2 .asb-drawer-contact {
    padding: 16px 18px 24px;
    border-top: 1px solid var(--asb-border);
    margin-top: auto;
}

.asb-header-v2 .asb-drawer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}

.asb-header-v2 .asb-drawer-contact a:hover {
    color: var(--asb-gold);
}

.asb-header-v2 .asb-drawer-contact .iconify {
    color: var(--asb-gold);
    font-size: 18px;
    flex-shrink: 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .asb-header-v2 .asb-mobile-brand img {
        height: var(--asb-logo-h-tablet);
        max-width: var(--asb-logo-w-max-tablet);
    }

    .asb-header-v2 .asb-mobile-bar {
        padding: 12px 24px;
        min-height: 76px;
    }
}

/* Legacy enquiry popup */
.asb-header-v2 .model__wrapper_Onclick .heading_popup {
    font-weight: 700;
    color: var(--asb-navy);
}

/* ─── Premium search overlay ─── */

body.asb-search-open {
    overflow: hidden;
}

.asb-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 10060;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.25s, opacity 0.25s;
}

.asb-search-overlay.is-open {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
}

.asb-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 19, 43, 0.72);
    backdrop-filter: blur(6px);
}

.asb-search-modal {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: min(88vh, 720px);
    margin: 0;
    background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 24px 64px rgba(15, 23, 42, 0.28);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(-12px);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.asb-search-overlay.is-open .asb-search-modal {
    transform: translateY(0);
}

.asb-search-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 12px;
    border-bottom: 1px solid #e2e8f0;
}

.asb-search-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: var(--asb-navy);
    letter-spacing: 0.02em;
}

.asb-search-brand .iconify {
    font-size: 22px;
    color: var(--asb-gold);
}

.asb-search-close-btn {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #f1f5f9;
    color: var(--asb-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.asb-search-close-btn:hover {
    background: var(--asb-navy);
    color: #fff;
}

.asb-search-form {
    padding: 0 20px 8px;
}

.asb-search-field {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 8px 6px 14px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.asb-search-field:focus-within {
    border-color: var(--asb-gold);
    box-shadow: 0 0 0 4px rgba(244, 203, 16, 0.2);
}

.asb-search-field-icon {
    font-size: 22px;
    color: #94a3b8;
    flex-shrink: 0;
}

.asb-search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 16px;
    color: var(--asb-navy);
    padding: 12px 4px;
    outline: none;
}

.asb-search-input::placeholder {
    color: #94a3b8;
}

.asb-search-clear,
.asb-search-voice,
.asb-search-submit {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.asb-search-clear {
    background: transparent;
    color: #94a3b8;
}

.asb-search-clear:hover {
    color: var(--asb-navy);
}

.asb-search-voice {
    display: none;
    background: rgba(244, 203, 16, 0.15);
    color: var(--asb-navy);
}

.asb-search-voice:hover {
    background: var(--asb-gold);
}

.asb-search-voice.is-listening {
    background: #ef4444;
    color: #fff;
    animation: asb-voice-pulse 1.2s ease-in-out infinite;
}

@keyframes asb-voice-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.asb-search-submit {
    background: var(--asb-navy);
    color: var(--asb-gold);
}

.asb-search-submit:hover {
    background: #0b132b;
    transform: translateX(2px);
}

.asb-search-status {
    margin: 6px 4px 0;
    font-size: 12px;
    color: #64748b;
    min-height: 18px;
}

.asb-search-hint {
    padding: 8px 20px 16px;
    overflow-y: auto;
    flex: 1;
}

.asb-search-hint-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #64748b;
    margin: 0 0 10px;
}

.asb-search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.asb-search-chip {
    border: 1px solid #e2e8f0;
    background: #fff;
    color: var(--asb-navy);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.asb-search-chip:hover {
    border-color: var(--asb-gold);
    background: rgba(244, 203, 16, 0.12);
}

.asb-search-quicknav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

.asb-search-quicknav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 10px;
    color: var(--asb-navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.asb-search-quicknav a:hover {
    background: #f1f5f9;
}

.asb-search-quicknav .iconify {
    font-size: 20px;
    color: var(--asb-gold);
}

.asb-search-results {
    padding: 0 12px 16px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.asb-search-group {
    margin-bottom: 12px;
}

.asb-search-group-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    padding: 8px 8px 6px;
}

.asb-search-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.asb-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 10px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.asb-search-item:hover {
    background: #f1f5f9;
}

.asb-search-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asb-search-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.asb-search-thumb-fallback {
    color: #94a3b8;
    font-size: 22px;
}

.asb-search-item-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.asb-search-item-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--asb-navy);
    line-height: 1.3;
}

.asb-search-item-excerpt {
    font-size: 12px;
    color: #64748b;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.asb-search-item-arrow {
    font-size: 18px;
    color: #cbd5e1;
    flex-shrink: 0;
}

.asb-search-item:hover .asb-search-item-arrow {
    color: var(--asb-gold);
}

.asb-search-view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 8px 4px;
    padding: 12px;
    border-radius: 10px;
    background: var(--asb-navy);
    color: var(--asb-gold);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.asb-search-view-all:hover {
    background: #0b132b;
    color: var(--asb-gold);
}

.asb-search-empty {
    padding: 20px 12px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.asb-search-empty a {
    color: var(--asb-navy);
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .asb-search-voice {
        display: inline-flex;
    }

    .asb-search-overlay {
        align-items: stretch;
    }

    .asb-search-modal {
        max-width: none;
        max-height: 100vh;
        border-radius: 0;
        min-height: 100dvh;
    }

    .asb-search-modal-head {
        padding-top: max(18px, env(safe-area-inset-top));
    }
}

@media (min-width: 576px) {
    .asb-search-overlay {
        padding: 24px 20px;
        align-items: flex-start;
    }

    .asb-search-modal {
        margin-top: 8vh;
        border-radius: 16px;
        max-height: min(84vh, 680px);
    }
}

@media (min-width: 992px) {
    .asb-search-overlay {
        padding-top: 72px;
    }

    .asb-search-modal {
        margin-top: 0;
    }
}

/* ─── Footer ─── */

.asb-footer-v2.site-footer {
    background: linear-gradient(180deg, #0b132b 0%, #0f172a 100%);
    padding: 64px 0 0;
    color: #cbd5e1;
}

.asb-footer-v2 .asb-footer-grid {
    padding-bottom: 48px;
}

.asb-footer-v2 .footer-brand .asb-logo-img,
.asb-footer-v2 .footer-brand img {
    height: var(--asb-logo-h-desktop);
    width: auto !important;
    max-width: var(--asb-logo-w-max-desktop);
    object-fit: contain;
    object-position: left center;
    margin-bottom: 16px;
}

.asb-footer-v2 .footer-tagline {
    font-size: 13px;
    color: var(--asb-gold);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.asb-footer-v2 .footer-text {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
    max-width: 320px;
}

.asb-footer-v2 .footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.asb-footer-v2 .footer-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(244, 203, 16, 0.1);
    border: 1px solid rgba(244, 203, 16, 0.25);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
}

.asb-footer-v2 .footer-trust-badge .iconify {
    color: var(--asb-gold);
    font-size: 16px;
}

.asb-footer-v2 .footer-title {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.asb-footer-v2 .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asb-footer-v2 .footer-links li {
    margin-bottom: 10px;
}

.asb-footer-v2 .footer-links a {
    color: #94a3b8;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.asb-footer-v2 .footer-links a:hover {
    color: var(--asb-gold);
    padding-left: 4px;
}

.asb-footer-v2 .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.asb-footer-v2 .footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.asb-footer-v2 .footer-contact .icons {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(244, 203, 16, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--asb-gold);
    font-size: 22px;
    margin-top: 0;
}

.asb-footer-v2 .footer-contact a {
    color: #94a3b8;
    text-decoration: none;
}

.asb-footer-v2 .footer-contact a:hover {
    color: var(--asb-gold);
}

.asb-footer-v2 .footer-contact-label {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.asb-footer-v2 .footer-contact li .icons .iconify[data-icon="ri:whatsapp-fill"] {
    color: #4ade80;
}

.asb-footer-v2 .footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.asb-footer-v2 .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #1e293b;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.2s ease, color 0.2s ease;
}

.asb-footer-v2 .footer-social a:hover {
    background: var(--asb-gold);
    color: var(--asb-navy);
}

.asb-footer-v2 .asb-footer-bottom {
    border-top: 1px solid var(--asb-border);
    padding: 22px 0;
    margin-top: 0;
}

.asb-footer-v2 .asb-footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    font-size: 13px;
    color: #64748b;
}

.asb-footer-v2 .asb-footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    margin-left: 18px;
}

.asb-footer-v2 .asb-footer-bottom a:hover {
    color: var(--asb-gold);
}

.asb-footer-v2 .asb-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 0;
}

/* Floating CTAs */
.global-cta-wrap {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.global-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 148px;
    background: var(--asb-gold);
    color: var(--asb-navy);
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.35px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.25);
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.global-cta-btn:hover,
.global-cta-btn:focus {
    color: var(--asb-navy);
    text-decoration: none;
    transform: translateY(-2px);
}

.global-cta-btn .iconify {
    font-size: 17px;
    margin-right: 6px;
}

.global-cta-btn.global-cta-call {
    background: #1e40af;
    color: #fff;
}

.global-cta-btn.global-cta-call:hover {
    color: #fff;
}

.global-cta-btn.global-cta-whatsapp {
    background: #15803d;
    color: #fff;
}

.global-cta-btn.global-cta-whatsapp:hover {
    color: #fff;
}

/* Scroll-to-top — above floating CTAs */
#topcontrol.topcontrol {
    z-index: 10050 !important;
    right: 18px !important;
    bottom: 210px !important;
    top: auto !important;
    left: auto !important;
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
    opacity: 1;
}

#topcontrol.topcontrol:hover {
    background: var(--asb-navy, #0f172a);
    color: var(--asb-gold, #f4cb10);
}

#quoteModal .modal-header {
    border-bottom: 1px solid #e2e8f0;
    padding: 18px 24px;
}

#quoteModal .modal-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--asb-navy);
    text-align: left;
    padding: 0;
}

#quoteModal .modal-content {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

@media (max-width: 991px) {
    .asb-header-v2 .asb-topbar-trust {
        font-size: 12px;
    }

    .asb-header-v2 .asb-topbar-contact {
        width: 100%;
        justify-content: flex-start;
    }

    .global-cta-wrap {
        right: 10px;
        left: 10px;
        bottom: 10px;
        flex-direction: row;
        gap: 8px;
    }

    .global-cta-btn {
        flex: 1 1 33.333%;
        min-width: 0;
        border-radius: 10px;
        padding: 11px 8px;
        font-size: 11px;
    }

    .global-cta-btn .iconify {
        font-size: 14px;
        margin-right: 4px;
    }

    #topcontrol.topcontrol {
        bottom: calc(82px + env(safe-area-inset-bottom, 0px)) !important;
        right: 12px !important;
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 22px;
    }

    body {
        padding-bottom: 72px;
    }
}

@media (max-width: 767px) {
    .asb-footer-v2 .asb-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .asb-footer-v2 .asb-footer-bottom-links {
        justify-content: center;
    }

    .asb-footer-v2 .asb-footer-bottom a {
        margin: 0 10px;
    }
}

/* Shared B2B quote form (homepage + modal) */
.asb-form-required-note {
    margin: 0 0 1.25rem;
    padding: 0.55rem 0.85rem;
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    background: rgba(244, 203, 16, 0.1);
    border: 1px solid rgba(244, 203, 16, 0.28);
    border-radius: 8px;
}

.asb-req {
    color: #dc2626;
    font-weight: 800;
    margin-left: 2px;
}

.asb-form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: capitalize;
    color: #0f172a;
}

.asb-form-optional {
    font-weight: 600;
    font-size: 11px;
    color: #64748b;
    text-transform: none;
    letter-spacing: 0;
}

.asb-quote-form .asb-form-control {
    min-height: 48px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #0f172a;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.asb-quote-form .asb-form-control:focus {
    outline: none;
    border-color: #c9a006;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(244, 203, 16, 0.18);
}

.asb-quote-form select.asb-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24'%3E%3Cpath fill='%2364748b' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 2.5rem;
}

.asb-quote-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    background: linear-gradient(145deg, #f4cb10 0%, #ffe566 100%) !important;
    color: #0f172a !important;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 24px rgba(244, 203, 16, 0.4);
}

#quoteModal .modal-content {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.15);
}

#quoteModal .modal-header {
    background: linear-gradient(165deg, #0f172a 0%, #141d32 100%);
    border-bottom: 1px solid rgba(244, 203, 16, 0.2);
}

#quoteModal .modal-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
}

#quoteModal .close {
    color: #fff;
    opacity: 0.85;
    text-shadow: none;
}
