/* =========================
   NAVBAR
========================= */

.travel-navbar {
    background: #fff;
    border-top: 2px solid #3ec7d3;
    min-height: 100px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .04);
}

/* =========================
   LOGO
========================= */

.travel-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    border-right: 1px solid #e8e8e8;
    text-decoration: none;
}

.travel-logo h2 {
    margin: 0;
    font-size: 54px;
    font-weight: 700;
    color: #152348;
    font-family: Georgia, serif;
}

.travel-logo h2 span {
    color: #49c7d4;
}

/* Logo Circle */

.logo-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #49c7d4;
    position: relative;
    overflow: hidden;
}

.logo-circle span {
    position: absolute;
    left: -10px;
    width: 80px;
    height: 6px;
    background: #fff;
    border-radius: 20px;
}

.logo-circle span:nth-child(1) {
    top: 12px;
}

.logo-circle span:nth-child(2) {
    top: 24px;
}

.logo-circle span:nth-child(3) {
    top: 36px;
}

/* =========================
   MENU
========================= */

.navbar-nav {
    gap: 18px;
}

.nav-link {
    color: #152348 !important;
    font-size: 18px;
    font-weight: 500;
    padding: 35px 12px !important;
    transition: .3s;
}

.nav-link:hover {
    color: #49c7d4 !important;
}

/* =========================
   RIGHT AREA
========================= */

.nav-right {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 5px;
}

/* Calling Icon */

.nav-right img {
    width: 70px;
    height: 55px;
    object-fit: contain;
    display: block;
    margin-right: -10px;
}

/* Search */

.search-box {
    width: 90px;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
}

.search-box i {
    font-size: 26px;
    color: #152348;
    cursor: pointer;
    transition: .3s;
}

.search-box i:hover {
    color: #49c7d4;
}

/* Phone */

.phone-box {
    min-height: 100px;
    display: flex;
    align-items: center;
    padding: 0 20px 0 0;
}

.phone-box a {
    text-decoration: none;
    color: #152348;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s;
}

.phone-box a:hover {
    color: #49c7d4;
}

/* =========================
   DROPDOWN
========================= */

.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    padding: 10px;
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 8px;
    transition: .3s;
}

.dropdown-item:hover {
    background: #49c7d4;
    color: #fff;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1200px) {

    .navbar-nav {
        gap: 8px;
    }

    .nav-link {
        font-size: 16px;
        padding: 35px 8px !important;
    }

    .travel-logo h2 {
        font-size: 42px;
    }

    .phone-box a {
        font-size: 16px;
    }

    .nav-right img {
        width: 60px;
        height: 45px;
    }
}

/* =========================
   LAPTOP 1024
========================= */

@media (max-width: 1024px) {

    .travel-logo {
        padding: 20px;
    }

    .travel-logo h2 {
        font-size: 34px;
    }

    .phone-box a {
        font-size: 14px;
        font-weight: 600;
    }

    .navbar-nav {
        gap: 2px;
    }

    .nav-link {
        font-size: 15px;
        padding: 35px 6px !important;
    }

    .nav-right img {
        width: 55px;
        height: 40px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

    .travel-logo {
        border-right: none;
    }

    .travel-logo h2 {
        font-size: 36px;
    }

    .navbar-collapse {
        padding: 20px;
        background: #fff;
    }

    .nav-link {
        padding: 12px 0 !important;
    }

    .nav-right {
        flex-direction: row;
        align-items: center;
        gap: 0;
        margin-top: 15px;
    }

    .nav-right img {
        width: 50px;
        height: 40px;
        margin-right: -8px;
    }

    .search-box,
    .phone-box {
        border: none;
        min-height: auto;
        padding: 0;
        width: auto;
    }

    .phone-box a {
        font-size: 16px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 576px) {

    .travel-logo {
        padding: 15px;
        gap: 10px;
    }

    .travel-logo h2 {
        font-size: 28px;
    }

    .logo-circle {
        width: 45px;
        height: 45px;
    }

    .nav-right img {
        width: 45px;
        height: 35px;
    }

    .phone-box a {
        font-size: 14px;
    }
}