/* =========================================
   NAVBAR
========================================= */

.navbar {

    width: 100%;

    min-height: 80px;

    position: fixed;

    top: 0;
    left: 0;

    z-index: 1000;

    background: #ffffff;

    border-bottom: 1px solid #ececec;

}

/* =========================================
   CONTAINER
========================================= */

.nav-container {

    width: 100%;

    padding: 14px 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

/* =========================================
   LOGO
========================================= */

/* =========================================
   LOGO
========================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    flex-shrink: 0;

}

.logo img {

    height: 50px;

    width: auto;

    object-fit: contain;

    display: block;

}

.logo h2 {

    margin: 0;

    font-size: 28px;

    font-weight: 700;

    line-height: 1;

    color: #2f3138;

    white-space: nowrap;

}

.logo h2 span {

    color: #ff6b00;

}

/* =========================================
   RIGHT SIDE
========================================= */

.nav-right {

    display: flex;

    align-items: center;

    gap: 60px;

}

/* =========================================
   NAV LINKS
========================================= */

.nav-links {

    display: flex;

    align-items: center;

    gap: 40px;

    list-style: none;

    margin: 0;

    padding: 0;

}

.nav-links li {

    list-style: none;

    position: relative;

}

.nav-links a {

    text-decoration: none;

    color: #2f3138;

    font-size: 16px;

    font-weight: 500;

    transition: all 0.3s ease;

}

.nav-links a:hover {

    color: #ff6b00;

}

/* =========================================
   DROPDOWN
========================================= */

.dropdown {
    position: relative;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;

    background: transparent;
    border: none;
    outline: none;

    padding: 0;

    color: #2f3138;
    font-size: 16px;
    font-weight: 500;
    font-family: inherit;
}

.dropdown-link i {
    font-size: 18px;
    transition: 0.3s ease;
}

.dropdown-link:hover {
    color: #ff6b00;
}

/* =========================================
   MEGA MENU
========================================= */

.dropdown-menu {

    position: absolute;

    top: calc(100% + 25px);

    left: 50%;

    transform: translateX(-50%) translateY(12px);

    width: min(760px, 92vw);

    background: #ffffff;

    border: 1px solid #ececec;

    border-radius: 18px;

    padding: 24px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s ease;

    z-index: 999;
}

/* SHOW MENU */

.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);

}

/* ROTATE ICON */

.dropdown:hover .dropdown-link i {
    transform: rotate(180deg);
}

.dropdown.active .dropdown-link i {
    transform: rotate(180deg);
}

/* =========================================
   DROPDOWN COLUMNS
========================================= */

.dropdown-column {

    display: flex;

    flex-direction: column;

    gap: 4px;

}

/* =========================================
   HEADING
========================================= */

.dropdown-heading {

    background: rgba(255, 107, 0, 0.08);

    color: #ff6b00;

    padding: 10px 14px;

    border-radius: 10px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    margin-bottom: 8px;

    margin-top: 12px;

}

.dropdown-column .dropdown-heading:first-child {
    margin-top: 0;
}

/* =========================================
   LINKS
========================================= */

.dropdown-column a {

    text-decoration: none;

    color: #2f3138;

    padding: 10px 14px;

    border-radius: 10px;

    font-size: 14px;

    font-weight: 500;

    transition: all 0.3s ease;

    line-height: 1.4;

    word-break: break-word;

}

.dropdown-column a:hover {

    background: rgba(255, 107, 0, 0.08);

    color: #ff6b00;

    padding-left: 20px;

}

/* =========================================
   ACTION BUTTONS
========================================= */

.nav-actions {

    display: flex;

    align-items: center;

    gap: 16px;

}

/* =========================================
   ENQUIRE BUTTON
========================================= */

.popup-nav-btn {

    height: 50px;

    padding: 0 22px;

    border-radius: 14px;

    border: 1px solid rgba(255, 107, 0, 0.2);

    background: rgba(255, 107, 0, 0.08);

    color: #ff6b00;

    font-weight: 600;

    font-size: 15px;

    display: flex;

    align-items: center;

    gap: 10px;

    cursor: pointer;

    transition: all 0.3s ease;

}

.popup-nav-btn i {

    font-size: 18px;

}

.popup-nav-btn:hover {

    background: #ff6b00;

    color: #ffffff;

}

/* =========================================
   APPLY BUTTON
========================================= */

.nav-btn {

    height: 50px;

    padding: 0 28px;

    border-radius: 14px;

    background: #ff6b00;

    color: #ffffff;

    text-decoration: none;

    font-weight: 600;

    font-size: 15px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: all 0.3s ease;

}

.nav-btn:hover {

    background: #ff8533;

    transform: translateY(-2px);

}

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

@media(max-width:1100px) {

    .nav-right {

        gap: 30px;

    }

    .nav-links {

        gap: 24px;

    }

}


@media(max-width:768px) {

    .logo {
        gap: 8px;
    }

    .logo img {
        height: 38px;
    }

    .logo h2 {
        font-size: 20px;
    }

}

@media(max-width:480px) {

    .nav-btn {
        padding: 0 14px;
        font-size: 13px;
        height: 42px;
    }

    .logo img {
        height: 32px;
    }

    .logo h2 {
        font-size: 16px;
    }

}

/* =========================================
   MOBILE MENU
========================================= */

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: rgba(255, 107, 0, 0.08);
    border-radius: 12px;
    color: #ff6b00;
    font-size: 24px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* =========================================
   TABLET + MOBILE
========================================= */

@media (max-width: 992px) {

    .dropdown-column {
        width: 100%;
    }

    .dropdown-column a {
        width: 100%;
    }

    .dropdown-link {
        justify-content: space-between;
        width: 100%;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-right {

        position: fixed;

        top: 88px;

        left: 0;

        width: 100%;

        max-height: calc(100vh - 88px);

        overflow-y: auto;

        scroll-behavior: smooth;

        background: #ffffff;

        flex-direction: column;

        align-items: flex-start;

        padding: 24px;

        gap: 24px;

        border-top: 1px solid #ececec;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

        display: none;
    }

    .nav-right.active {
        display: flex;
    }

    .nav-links {

        display: flex;

        flex-direction: column;

        width: 100%;

        align-items: flex-start;

        gap: 18px;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        display: block;
    }

    .nav-actions {

        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }

    .popup-nav-btn,
    .nav-btn {

        display: flex;

        width: 100%;

        justify-content: center;
    }

    /* MOBILE DROPDOWN */

    .dropdown-menu {

        position: static;

        left: auto;

        top: auto;

        width: 100%;

        display: none;

        grid-template-columns: 1fr;

        gap: 12px;

        margin-top: 12px;

        padding: 15px;

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

        border: 1px solid #ececec;

        border-radius: 14px;
    }

    .dropdown.active .dropdown-menu {
        display: grid;
    }

}