/* -----------------------------------------
   NAVBAR
----------------------------------------- */
:root {
    --navbar-max-width: 1460px;
    --navbar-padding-x: 5rem;
}

body {
    margin: 0;
    padding: 0;
}

/* Top Bar */
.top-bar {
    background: transparent;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    justify-content: center;
}

.top-bar-container {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .top-bar-left .divider {
        color: rgba(255,255,255,0.8);
        font-size: 0.85rem;
    }

.top-bar .social-link,
.top-bar .email-link {
    color: #fff;
    transition: color 0.25s ease;
}

.top-bar .social-link {
    font-size: 1rem;
}

.top-bar .email-link {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

    .top-bar .social-link:hover,
    .top-bar .email-link:hover {
        color: #ff6600;
    }

/* Navbar */
.start-page-nav {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.12);
    z-index: 1000;
}

/* Logo */
.navbar-brand {
    padding: 0;
}

    .navbar-brand img {
        width: auto;
        height: 73px;
        max-height: 65px;
        object-fit: contain;
    }

/* Hamburger — desktop hidden */
.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 1002;
}

    .navbar-toggler span {
        display: block;
        width: 25px;
        height: 2px;
        background: #333;
        border-radius: 2px;
    }

#mob-nav {
    display: none;
}

/* Desktop Menu */
#main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    #main-menu .nav-item {
        position: relative;
    }

    #main-menu > .nav-item > .nav-link {
        color: #6a6a6a;
        font-weight: 500;
        font-size: 1rem;
        text-decoration: none;
        padding: 8px 13px;
        white-space: nowrap;
        transition: color 0.25s ease;
    }

        #main-menu > .nav-item > .nav-link:hover,
        #main-menu > .nav-item.active > .nav-link {
            color: #ff6600;
        }

    #main-menu .phone-button,
    #main-menu .nav-item .phone-button {
        background: #ff6600 !important;
        color: #fff !important;
        font-weight: 600;
        font-size: 1rem;
        padding: 0.85rem 1.7rem;
        border-radius: 7px;
        white-space: nowrap;
        transition: background 0.25s ease, transform 0.2s ease;
    }

        #main-menu .phone-button:hover,
        #main-menu .nav-item .phone-button:hover {
            background: #cc4f00 !important;
            color: #fff !important;
            transform: translateY(-2px);
        }
#main-menu .nav-item:has(.phone-button) {
    margin-left: auto;
    order: 99;
}

/* Mobile Offcanvas */
#mob-nav,
.offcanvas {
    background: #fff;
    width: 300px;
    z-index: 9999;
    top: 0;
}

.main-menu-mobile {
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mob-header-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.mob-nav-logo img {
    width: 130px;
    height: auto;
}

.mob-close-x {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s ease;
}

    .mob-close-x:hover {
        color: #ff6600;
    }

.mob-menu-item {
    border-bottom: 1px solid #f5f5f5;
    padding: 0;
    list-style: none;
}

.mob-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

    .mob-menu-link:hover {
        color: #ff6600;
        background: #fff5f0;
    }

.mob-phone-item {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    list-style: none;
}

.mob-phone-button {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    width: 100%;
    text-decoration: none;
    color: #ff6600 !important;
    font-weight: 600;
}

    .mob-phone-button:hover {
        color: #cc4f00 !important;
    }

.mob-footer-item {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
}

.mob-socials {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.mob-social-link {
    color: #333;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .mob-social-link:hover {
        color: #ff6600;
    }

.mob-email-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #555;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .mob-email-link i {
        color: #ff6600 !important;
        fill: #ff6600 !important;
    }

    .mob-email-link svg path {
        fill: #ff6600 !important;
    }

    .mob-email-link span {
        color: #ff6600;
    }

    .mob-email-link:hover,
    .mob-email-link:hover i,
    .mob-email-link:hover span {
        color: #cc4f00 !important;
    }

/* Page spacing */
html, body {
    margin: 0;
    padding: 0;
}

section:first-of-type {
    padding-top: 170px;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.mob-close-x,
.mob-close-x:focus,
.mob-close-x:active,
.mob-close-x:focus-visible {
    background: transparent !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
    color: #333 !important;
    -webkit-tap-highlight-color: transparent !important;
}

    .mob-close-x:hover {
        color: #ff6600 !important;
    }

/* -----------------------------------------
   RESPONSIVE
----------------------------------------- */
@media (max-width: 991px) {
    .navbar {
        display: none;
    }

    .top-bar {
        display: none;
    }

    .navbar-toggler {
        display: flex;
        position: fixed;
        top: 1rem;
        right: 1rem;
        z-index: 9999;
        padding: 0.5rem;
        gap: 5px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

        .navbar-toggler span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.4);
        }

    #mob-nav {
        display: block;
    }

    #desktopMenu, #main-menu {
        display: none;
    }

    section:first-of-type {
        padding-top: 100px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 130px;
        max-height: 42px;
    }
}

@media (max-width: 991px) {
    .navbar,
    .start-page-nav {
        display: none !important;
    }
}