:root {
    --scbu-red: #ed1515;
    --scbu-dark-red: #ca0909;
    --scbu-black: #111827;
    --scbu-text: #20242a;
    --scbu-muted: #667085;
    --scbu-light-blue: #edf7ff;
    --scbu-white: #ffffff;
    --scbu-border: #e7edf3;
    --scbu-green: #12b84b;
    --scbu-topbar-start: #f4faff;
    --scbu-topbar-end: #f5fbff;
    --scbu-call-start: #f41c1c;
    --scbu-call-end: #d70000;
    --scbu-container-width: 1460px;
    --scbu-navbar-height: 104px;
}

.scbu-header,
.scbu-header * {
    box-sizing: border-box;
}

.scbu-header {
    width: 100%;
    position: relative;
    z-index: 9999;
    font-family: "Montserrat", sans-serif;
    background: var(--scbu-white);
}

.scbu-container {
    width: 100%;
    max-width: var(--scbu-container-width);
    margin: 0 auto;
    padding-left: 28px;
    padding-right: 28px;
}

/* Top Bar */
.scbu-topbar {
    width: 100%;
    background:
        linear-gradient(
            90deg,
            var(--scbu-topbar-start) 0%,
            var(--scbu-topbar-end) 100%
        );
    border-bottom: 1px solid #e4f0f8;
}

.scbu-topbar-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.scbu-top-left {
    display: flex;
    align-items: center;
    gap: 70px;
}

.scbu-top-left a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--scbu-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.scbu-top-left a:hover {
    color: var(--scbu-red);
}

.scbu-top-left strong {
    font-size: 19px;
    color: var(--scbu-black);
    font-weight: 800;
}

.scbu-top-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.scbu-location-icon {
    color: var(--scbu-red);
}

.scbu-whatsapp-icon {
    color: var(--scbu-green);
    font-size: 26px;
}

.scbu-top-right {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--scbu-text);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

/* UAE Flag Created with CSS */
.scbu-uae-flag {
    width: 38px;
    height: 24px;
    display: grid;
    grid-template-columns: 10px 1fr;
    grid-template-rows: repeat(3, 1fr);
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.scbu-flag-red {
    grid-column: 1;
    grid-row: 1 / 4;
    background: #ff0000;
}

.scbu-flag-green {
    grid-column: 2;
    grid-row: 1;
    background: #00843d;
}

.scbu-flag-white {
    grid-column: 2;
    grid-row: 2;
    background: #ffffff;
}

.scbu-flag-black {
    grid-column: 2;
    grid-row: 3;
    background: #000000;
}

/* Main Navigation */
.scbu-navbar {
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--scbu-border);
    box-shadow: 0 7px 25px rgba(20, 36, 55, 0.06);
}

.scbu-navbar-inner {
    min-height: var(--scbu-navbar-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.scbu-logo {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: 320px;
    text-decoration: none;
    flex-shrink: 0;
}

.scbu-logo-car {
    width: 104px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--scbu-red);
    font-size: 58px;
    line-height: 1;
}

.scbu-logo-car::before,
.scbu-logo-car::after {
    content: "";
    position: absolute;
    bottom: 2px;
    width: 10px;
    height: 10px;
    background: var(--scbu-white);
    border: 3px solid var(--scbu-red);
    border-radius: 50%;
}

.scbu-logo-car::before {
    left: 21px;
}

.scbu-logo-car::after {
    right: 17px;
}

.scbu-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.scbu-logo-text strong {
    color: var(--scbu-red);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.scbu-logo-text small {
    margin-top: 5px;
    color: var(--scbu-black);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.6px;
}

/* Desktop Navigation */
.scbu-navigation {
    margin-left: auto;
}

.scbu-navigation > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.scbu-navigation > ul > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.scbu-navigation a {
    text-decoration: none;
}

.scbu-navigation > ul > li > a {
    min-height: var(--scbu-navbar-height);
    padding: 0 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    position: relative;
    color: var(--scbu-black);
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        background 0.25s ease;
}

.scbu-navigation > ul > li > a::after {
    content: "";
    position: absolute;
    left: 17px;
    right: 17px;
    bottom: 26px;
    height: 2px;
    background: var(--scbu-red);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.scbu-navigation > ul > li > a:hover,
.scbu-navigation > ul > li > a.scbu-active {
    color: var(--scbu-red);
}

.scbu-navigation > ul > li > a:hover::after,
.scbu-navigation > ul > li > a.scbu-active::after {
    transform: scaleX(1);
}

.scbu-navigation > ul > li > a i {
    font-size: 10px;
}

/* Dropdown */
.scbu-dropdown {
    width: 230px;
    position: absolute;
    top: calc(100% - 15px);
    left: 0;
    list-style: none;
    margin: 0;
    padding: 10px;
    background: var(--scbu-white);
    border: 1px solid var(--scbu-border);
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(24, 39, 58, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}

.scbu-has-dropdown:hover > .scbu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scbu-dropdown li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.scbu-dropdown li a {
    display: block;
    padding: 12px 14px;
    border-radius: 7px;
    color: var(--scbu-text);
    font-size: 13px;
    font-weight: 600;
    transition:
        color 0.25s ease,
        background 0.25s ease,
        padding-left 0.25s ease;
}

.scbu-dropdown li a:hover {
    padding-left: 19px;
    color: var(--scbu-red);
    background: #fff1f1;
}

/* Call Button */
.scbu-call-button,
.scbu-mobile-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--scbu-white);
    text-decoration: none;
    background:
        linear-gradient(
            135deg,
            var(--scbu-call-start) 0%,
            var(--scbu-call-end) 100%
        );
    box-shadow: 0 9px 23px rgba(226, 15, 15, 0.23);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.scbu-call-button {
    min-width: 245px;
    min-height: 62px;
    padding: 14px 23px;
    border-radius: 9px;
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
}

.scbu-call-button:hover,
.scbu-mobile-call:hover {
    color: var(--scbu-white);
    transform: translateY(-2px);
    box-shadow: 0 13px 28px rgba(226, 15, 15, 0.3);
}

.scbu-call-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    font-size: 18px;
}

.scbu-mobile-call {
    display: none;
}

/* Mobile Toggle */
.scbu-menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: var(--scbu-red);
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(226, 15, 15, 0.2);
}

.scbu-menu-toggle span {
    width: 23px;
    height: 2px;
    display: block;
    background: var(--scbu-white);
    border-radius: 10px;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.scbu-menu-toggle.scbu-toggle-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.scbu-menu-toggle.scbu-toggle-active span:nth-child(2) {
    opacity: 0;
}

.scbu-menu-toggle.scbu-toggle-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Medium Desktop */
@media (max-width: 1280px) {
    .scbu-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .scbu-logo {
        min-width: 270px;
    }

    .scbu-logo-car {
        width: 86px;
        font-size: 50px;
    }

    .scbu-logo-text strong {
        font-size: 20px;
    }

    .scbu-logo-text small {
        font-size: 18px;
    }

    .scbu-navigation > ul > li > a {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 12px;
    }

    .scbu-navigation > ul > li > a::after {
        left: 10px;
        right: 10px;
    }

    .scbu-call-button {
        min-width: 205px;
        padding-left: 16px;
        padding-right: 16px;
        font-size: 15px;
    }
}

/* Tablet and Mobile */
@media (max-width: 1050px) {
    .scbu-topbar-inner {
        min-height: 48px;
    }

    .scbu-top-left {
        width: 100%;
        justify-content: space-between;
        gap: 15px;
    }

    .scbu-top-right {
        display: none;
    }

    .scbu-top-left a {
        font-size: 12px;
    }

    .scbu-top-left strong {
        font-size: 15px;
    }

    .scbu-navbar-inner {
        min-height: 84px;
        position: relative;
    }

    .scbu-logo {
        min-width: auto;
    }

    .scbu-logo-car {
        width: 75px;
        height: 50px;
        font-size: 43px;
    }

    .scbu-logo-car::before {
        left: 16px;
    }

    .scbu-logo-car::after {
        right: 12px;
    }

    .scbu-logo-text strong {
        font-size: 18px;
    }

    .scbu-logo-text small {
        font-size: 16px;
    }

    .scbu-menu-toggle {
        display: flex;
    }

    .scbu-call-button {
        display: none;
    }

    .scbu-navigation {
        width: 100%;
        max-height: 0;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        margin: 0;
        padding: 0 20px;
        background: var(--scbu-white);
        border-top: 1px solid var(--scbu-border);
        box-shadow: 0 18px 35px rgba(24, 39, 58, 0.12);
        opacity: 0;
        visibility: hidden;
        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            visibility 0.3s ease,
            padding 0.3s ease;
    }

    .scbu-navigation.scbu-menu-open {
        max-height: 750px;
        padding-top: 14px;
        padding-bottom: 20px;
        opacity: 1;
        visibility: visible;
        overflow-y: auto;
    }

    .scbu-navigation > ul {
        width: 100%;
        display: block;
    }

    .scbu-navigation > ul > li {
        width: 100%;
        border-bottom: 1px solid #edf0f4;
    }

    .scbu-navigation > ul > li > a {
        min-height: 49px;
        padding: 0 4px;
        justify-content: space-between;
        font-size: 14px;
    }

    .scbu-navigation > ul > li > a::after {
        display: none;
    }

    .scbu-dropdown {
        width: 100%;
        max-height: 0;
        position: static;
        overflow: hidden;
        padding: 0 8px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition:
            max-height 0.3s ease,
            padding 0.3s ease;
    }

    .scbu-has-dropdown.scbu-dropdown-open > .scbu-dropdown {
        max-height: 350px;
        padding-top: 5px;
        padding-bottom: 10px;
    }

    .scbu-has-dropdown.scbu-dropdown-open > a i {
        transform: rotate(180deg);
    }

    .scbu-has-dropdown > a i {
        transition: transform 0.25s ease;
    }

    .scbu-dropdown li a {
        padding: 11px 13px;
        background: #f8fafc;
        margin-bottom: 4px;
    }

    .scbu-mobile-call {
        min-height: 54px;
        margin-top: 18px;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 800;
    }
}

/* Small Mobile */
@media (max-width: 600px) {
    .scbu-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .scbu-topbar-inner {
        min-height: auto;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .scbu-top-left {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .scbu-top-left a {
        width: 100%;
        gap: 8px;
        white-space: normal;
        font-size: 11px;
    }

    .scbu-top-left strong {
        font-size: 14px;
    }

    .scbu-top-icon {
        width: 22px;
        height: 22px;
        font-size: 18px;
    }

    .scbu-whatsapp-icon {
        font-size: 21px;
    }

    .scbu-navbar-inner {
        min-height: 75px;
    }

    .scbu-logo {
        gap: 8px;
    }

    .scbu-logo-car {
        width: 58px;
        height: 42px;
        font-size: 36px;
    }

    .scbu-logo-car::before,
    .scbu-logo-car::after {
        width: 8px;
        height: 8px;
        border-width: 2px;
        bottom: 1px;
    }

    .scbu-logo-car::before {
        left: 12px;
    }

    .scbu-logo-car::after {
        right: 8px;
    }

    .scbu-logo-text strong {
        font-size: 15px;
        letter-spacing: -0.4px;
    }

    .scbu-logo-text small {
        margin-top: 4px;
        font-size: 14px;
        letter-spacing: -0.3px;
    }

    .scbu-menu-toggle {
        width: 42px;
        height: 42px;
    }

    .scbu-navigation {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Very Small Screens */
@media (max-width: 370px) {
    .scbu-logo-car {
        display: none;
    }

    .scbu-logo-text strong {
        font-size: 14px;
    }

    .scbu-logo-text small {
        font-size: 13px;
    }
}
