/* @import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Navbar Section Start*/
/* General Reset */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif !important;
    /* font-family: Arial, sans-serif; */
}

/* Overlay */
.menu-overlay-unique {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

.menu-overlay-unique.active {
    display: block;
}

/* Header */
.header-unique {
    width: 100%;
    background-color: #fff;
    position: relative;
    z-index: 1000;
}

.header-container-unique {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    padding-bottom: 0px;
}

.menu-toggle-unique,
.close-menu-toggle-unique {
    cursor: pointer;
    display: block;
}
.header-logo-unique{
    margin: 0rem 1rem;
}
.header-logo-unique img.logo-img-unique {
    /* height: 56px; */
    height: 5rem;
}

/* Navigation */
.header-main-menu-unique {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background-color: #fff;
    overflow-y: auto;
    padding: 20px;
    transition: left 0.3s ease;
    z-index: 1000;
}
#tour-pack-btn-unique{
    font-weight: 500 !important;
    /* font-size: 14px; */
}
.nav-item-unique{
    font-weight: 500 !important;
}
.header-main-menu-unique.active {
    left: 0;
}

#header-tabs-unique {
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 1rem;
}

#header-tabs-unique li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.header-tab-item-unique a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    /* font-size: 14px; */
}

.header-tab-item-unique a:hover,
.nav-item-unique a:hover,
#tour-pack-btn-main-unique:hover {
    color: #01aa90;
}

.nav-father-unique {
    position: relative;
}

.nav-wrapper-unique {
    position: static;
    padding: 0;
    margin-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
/* .nav-wrapper-unique a{
    font-size: 14px;
} */
.nav-wrapper-unique.active {
    max-height: 500px;
    padding: 10px 0;
}

.nav-menu-unique {
    list-style: none;
}

.nav-item-unique {
    margin-bottom: 10px;
}

.nav-item-unique:last-child {
    margin-bottom: 0;
}

.nav-item-unique a {
    text-decoration: none;
    color: #000;
    transition: color 0.2s;
}

.nav-item-unique a:hover {
    color: #22c55e;
    /* Green hover */
}

/* Responsive logo */
#resp-logo-unique {
    display: none;
}

/* Actions */
.header-actions-unique {
    display: flex;
    gap: 1rem;
}

.phone-box-unique {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #ccc;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.phone-icon-wrapper-unique {
    position: relative;
    width: 36px;
    height: 36px;
    background: #f97316;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ping-effect-unique {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f97316;
    opacity: 0.5;
    animation: ping 1s infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.phone-text-unique h2 {
    font-size: 0.8rem;
    font-weight: bold;
    color: #4b5563;
    text-transform: uppercase;
}

.phone-text-unique p {
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
}

.book-btn-wrapper-unique button {
    background: #00B89C;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.book-btn-wrapper-unique button:hover {
    background: #16a34a;
}

/* Media Queries */
@media (min-width: 1024px) {

    .menu-toggle-unique,
    .close-menu-toggle-unique {
        display: none;
    }

    .header-main-menu-unique {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        overflow: visible;
        padding: 0;
        left: 0;
        margin-right: 1rem;
    }

    #header-tabs-unique {
        flex-direction: row;
        gap: 16px;
    }

    #header-tabs-unique li {
        padding: 0;
        border-bottom: none;
    }

    .nav-wrapper-unique {
        position: absolute;
        padding: 20px;
        width: 17rem;
        left: 0px;
        top: 20px;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        opacity: 0;
        visibility: hidden;
        max-height: none;
    }

    .nav-father-unique:hover .nav-wrapper-unique {
        opacity: 1;
        visibility: visible;
    }

    #tour-pack-btn-main-unique::after {
        display: none;
    }
}
@media (min-width: 1400px) {
    .logo-img-unique{
        height: 4rem;
    }
    .header-container-unique{
        padding-bottom: 5px;
    }
}
@media (max-width: 639px) {
    .header-container-unique {
        padding: 16px;
    }
}

@media (max-width: 1024px) {
    #resp-logo-unique {
        display: block;
        margin-bottom: 8px;
    }

    #resp-logo-unique img {
        width: 75%;
    }
}

@media (max-width: 600px) {
    .phone-box-unique {
        display: none;
    }
}

@media (min-width: 1023px) {
    #resp-logo-unique {
        display: none;
    }
}

@media (min-width: 1024px) and (max-width: 1200px) {

    .header-actions-unique,
    .header-tabs-unique {
        gap: 10px;
    }

    .phone-box-unique {
        display: none;
    }
}

@media (min-width: 1300px) {
    #header-tabs-unique {
        gap: 1.5rem;
    }
}
@media (max-width: 450px) {
    .logo-img-unique{
        height: 3.5rem !important;
    }
}
/* Navbar Section End*/