/* =================================
   COMMON
================================= */

.container {
    width: 94%;
    max-width: 1400px;
    margin: auto;
}


/* =================================
   TOP BAR
================================= */

.top-bar {
    background: #082235;
    color: #fff;
    font-size: 13px;
}

.top-bar-inner {
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-left span {
    color: #fff;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-right a {
    color: #fff;
    text-decoration: none;
}

.top-right a:hover {
    color: #f5b51b;
}


/* =================================
   NAVBAR
================================= */

.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1000;
}

.navbar-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =================================
   LOGO
================================= */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
}


/* =================================
   NAV MENU
================================= */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu > a,
.dropdown-toggle {
    color: #222;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 28px 0;
    transition: 0.3s;
}

.nav-menu > a:hover,
.dropdown-toggle:hover {
    color: #0799a4;
}


/* Active menu */

.nav-menu > a.active {
    color: #0799a4;
    position: relative;
}

.nav-menu > a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 2px;
    background: #0799a4;
}


/* =================================
   SERVICES DROPDOWN
================================= */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle span {
    font-size: 16px;
}


/* Dropdown box */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);

    width: 220px;

    background: #fff;
    border-top: 3px solid #0799a4;

    box-shadow: 0 8px 25px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);

    transition: 0.25s;
}


/* Show dropdown */

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}


/* Dropdown links */

.dropdown-menu a {
    display: block;
    padding: 13px 18px;

    color: #333;
    text-decoration: none;

    font-size: 14px;

    border-bottom: 1px solid #eee;

    transition: 0.2s;
}

.dropdown-menu a:hover {
    background: #f5fafa;
    color: #0799a4;
    padding-left: 23px;
}


/* =================================
   GET FREE QUOTE
================================= */

.quote-btn {
    background: #eeb01b !important;
    color: #fff !important;

    padding: 13px 22px !important;

    border-radius: 4px;

    font-size: 13px !important;
    font-weight: 600 !important;

    transition: 0.3s;
}

.quote-btn:hover {
    background: #d99c0d !important;
    transform: translateY(-1px);
}

.quote-btn::after {
    display: none !important;
}


/* =================================
   MOBILE BUTTON
================================= */

.menu-toggle {
    display: none;

    background: transparent;
    border: none;

    font-size: 28px;
    cursor: pointer;

    color: #082235;
}


/* =================================
   TABLET
================================= */

@media (max-width: 1100px) {

    .nav-menu {
        gap: 18px;
    }

    .nav-menu > a,
    .dropdown-toggle {
        font-size: 14px;
    }

    .logo img {
        width: 135px;
    }

}


/* =================================
   MOBILE
================================= */

@media (max-width: 768px) {

    .top-left {
        display: none;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .top-right {
        gap: 12px;
        font-size: 11px;
    }

    .top-right a:first-child {
        display: none;
    }


    .navbar-inner {
        min-height: 65px;
    }

    .logo img {
        width: 130px;
    }


    /* Mobile menu button */

    .menu-toggle {
        display: block;
    }


    /* Mobile navigation */

    .nav-menu {
        position: absolute;

        top: 65px;
        left: 0;

        width: 100%;

        background: #fff;

        display: none;
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        box-shadow: 0 10px 20px rgba(0,0,0,0.12);

        padding: 10px 0;
    }


    .nav-menu.show {
        display: flex;
    }


    .nav-menu > a,
    .dropdown-toggle {
        padding: 14px 25px;

        border-bottom: 1px solid #eee;
    }


    .nav-menu > a.active::after {
        display: none;
    }


    /* Mobile dropdown */

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;

        width: 100%;

        transform: none;

        opacity: 1;
        visibility: visible;

        display: none;

        box-shadow: none;

        border-top: none;
    }

    .dropdown:hover .dropdown-menu {
        transform: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }


    .dropdown-menu a {
        padding-left: 45px;
        background: #f8f8f8;
    }


    .quote-btn {
        margin: 12px 20px;
        text-align: center;
    }

}