

/* =========================================
   HEADER
========================================= */

.site-header {
    position: relative;
    width: 100%;
    height: 90px;
    background: #fff;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.header-inner {
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}


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

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    width: 200px;
    height: auto;
    display: block;
}


/* =========================================
   NAVIGATION
========================================= */

.main-navigation {
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 0;
    color: #082f78;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

/* CSS Chevron */
.dropdown-arrow {
    width: 8px;
    height: 8px;

    border-right: 2px solid #082f78;
    border-bottom: 2px solid #082f78;

    transform: rotate(45deg);
    margin-top: -6px;

    transition: transform 0.25s ease;
}

/* Hover / Open */
.has-dropdown:hover .dropdown-arrow,
.has-dropdown.active .dropdown-arrow {
    transform: rotate(225deg);
    margin-top: -1px;
}

.nav-list {
    list-style: none;

    display: flex;
    align-items: center;

    height: 100%;
    gap: 48px;
}

.nav-item {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
}

.nav-link {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;

    gap: 10px;

    border: 0;
    background: transparent;

    color: #082f78;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    transition: color .25s ease;
    text-transform: uppercase;
}

.nav-link:hover {
    color: #ef4d51;
}


/* =========================================
   ARROW
========================================= */

.arrow {
    font-size: 20px;
    line-height: 1;

    transition: transform .25s ease;
}

.has-dropdown:hover .arrow {
    transform: rotate(180deg);
}


/* =========================================
   ACTIVE GOLD UNDERLINE
========================================= */

.has-dropdown:hover > .nav-link::after,
.nav-item > .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: #ef4d51;
}


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

.mega-menu {
    position: absolute;
    top: calc(100% - 1px);
    left: 121%;
    /* left: 274%; */
    transform:
        translateX(-50%)
        translateY(12px);
    width: 770px;
    background: #fff;
    border-radius: 0 0 6px 6px;
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    box-shadow:
        0 12px 35px rgba(0,0,0,.16);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}

.mega-menu-giftcity-dropdown{
    width: 1121px;
    left: 140%;
    grid-template-columns: repeat(3, 1fr);
}
/* small top pointer */

/* .mega-menu::before {
    content: "";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #ef4d51;
} */


/* desktop hover */

@media (min-width: 992px) {

    .has-dropdown:hover > .mega-menu {

        opacity: 1;
        visibility: visible;

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

    }
    .has-dropdown:hover button{color: #e14044;}
    .has-dropdown:hover .dropdown-arrow{border-right: 2px solid #e14044;border-bottom: 2px solid #e14044;}

    .has-dropdown:hover > .simple-dropdown {

        opacity: 1;
        visibility: visible;

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

    }

}


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

.mega-column {
    min-width: 0;
}

.mega-column + .mega-column {
    border-left: 1px solid #d8dee8;
    padding-left: 40px;
}

.mega-column h3 {
    margin-bottom: 16px;
    padding-bottom: 13px;
    border-bottom: 1px solid #d9dee6;
    color: #e14044;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
}

.mega-column a {

    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #092f79;

    font-size: 16px;
    line-height: 1.4;

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.mega-column a span {

    font-size: 32px;
    font-weight: 300;

    line-height: 1;

}

.mega-column a:hover {

    color: #e36d70;

    padding-left: 5px;
}

.giftcity-dropdown-bx{
    width: 100%;
    border-bottom: 1px solid #d9dee6;
    padding-bottom: 15px;
    margin-bottom: 16px;
}
.giftcity-dropdown-bx:last-child{border-bottom: 0px; margin-bottom: 0px; padding-bottom: 0px;}
.giftcity-dropdown-bx h4{
    margin-bottom: 0px;
    padding-bottom: 10px;
    padding-top: 5px;
    color: #17356c;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
}


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

.simple-dropdown {
    position: absolute;
    top: 100%;
    left: 160%;
    width: 290px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 12px);
    transition:
        .25s ease;
}

.simple-dropdown a {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #092f79;
    font-size: 16px;
    line-height: 1.4;
    transition: color .2s ease, padding-left .2s ease;
}

.simple-dropdown a:hover {
    background: transparent;
    color: #e36d70;
    padding-left: 5px;
}
.simple-dropdown a span {
    font-size: 32px;
    font-weight: 300;
    line-height: 1;
}
.simple-dropdown h3 {
    margin-bottom: 16px;
    padding-bottom: 13px;
    border-bottom: 1px solid #d9dee6;
    color: #e14044;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 700;
        text-transform: uppercase;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.message-whatsapp {
    width: 200px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #0fa349;
    border: 1px solid #0fa349;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.message-whatsapp:hover {
    background: #12843f;
    color: #ffffff;
}

.whatsapp-svg {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.whatsapp-svg svg {
    width: 34px;
    height: 34px;

    display: block;
}

.message-text {
    white-space: nowrap;
}


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

.mobile-menu-btn {

    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.mobile-menu-btn span {

    display: block;

    width: 27px;
    height: 3px;

    background: #092f78;

    border-radius: 5px;

    transition: .3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {

    transform:
        translateY(9px)
        rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {

    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {

    transform:
        translateY(-9px)
        rotate(-45deg);
}
.gp-mobile-hdr-right{display: none;}
.mobile-block-icon{display: none;}
.gp-mobile-call{display: none;}
/* #wrapperblock{display: inline;} */

/* =========================================
   TABLET
========================================= */

@media (max-width: 1250px) {

    .header-inner {
        width: 100%;
    }

    .logo img {

        width: 170px;
    }
    .message-whatsapp {
    width: 162px;
    height: 48px;
    gap: 7px;
    border-radius: 8px;
    font-size: 15px;
}

    .nav-list {

        gap: 25px;
    }

    .nav-link {

        font-size: 15px;
    }

    .whatsapp-btn {

        min-width: 190px;
    }
    .mega-menu-giftcity-dropdown {
    width: 860px !important;
    left: 117px !important;
    }

    .mega-menu {
        width: 851px;
        left: 270px;
    }

}


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

@media (max-width: 991px) {
    .message-whatsapp{display: none;}
    .gp-mobile-hdr-right{display: block;}
    .gp-mobile-hdr-right {
        display: flex;
        align-items: center;
    }
        .gp-mobile-hdr-right .call-img {
        border-radius: 6px;
        border: 1px solid #283d76;
        width: 42px;
        height: 38px;
        margin-top: 0px;
        text-align: center;
    }
        .gp-mobile-hdr-right .call-img img {
        width: 26px;
        height: auto;
        margin-top: 5px;
    }
        .gp-mobile-hdr-right a {
        margin-right: 15px;
        margin-top: 3px;
    }
    .gp-mobile-hdr-right a span img {
        border-radius: 6px;
    }
.message-whatsapp {
    width: 144px;
    height: 40px;
    gap: 8px;
    font-size: 12px;
}
.whatsapp-svg{
    width: 30px;
    height: 30px;
}
 

.site-header {
        height: 78px;
    }

    .header-inner {
        width: 100%;    padding: 0 20px;
    }


    /* LOGO */

    .logo img {

        width: 190px;
    }


    /* WHATSAPP HIDE */

    .whatsapp-btn {

        display: none;
    }


    /* HAMBURGER */

    .mobile-menu-btn {

        display: flex;
    }


    /* NAV */

    .main-navigation {

        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        height: auto;

        display: block;

        background: #fff;

        box-shadow:
            0 15px 30px rgba(0,0,0,.12);

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-15px);

        transition:
            max-height .4s ease,
            opacity .3s ease,
            transform .3s ease,
            visibility .3s ease;
    }
/* Full screen black transparent overlay */
.site-header:has(.main-navigation.menu-open)::after {
        content: "";

        position: fixed;

        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;

        background: rgba(0, 0, 0, 0.65);

        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);

        z-index: 9990;

        pointer-events: none;
    }
body.menu-open {
        overflow: hidden;
        height: 100vh;
        touch-action: none;
    }

    /* Menu itself can scroll */
    .main-navigation.menu-open {
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    /* =====================================
       HEADER ALWAYS CLEAR
    ===================================== */

    .site-header {
        position: relative;

        z-index: 10000;

        background: #fff;
    }


    /* =====================================
       LOGO / WHATSAPP / CLOSE
       Always above overlay
    ===================================== */

    .logo,
    .whatsapp-btn,
    .mobile-menu-btn {
        position: relative;

        z-index: 10002;
    }


    /* =====================================
       MOBILE MENU
       Above background overlay
    ===================================== */

    .main-navigation.menu-open {

        position: fixed;

        top: 70px;
        left: 0;

        width: 100%;

        height: calc(100vh - 70px);

        background: rgb(31 55 100);

        z-index: 10001;

        overflow-y: auto;
    }



    /* OPEN MOBILE NAV */

    .main-navigation.menu-open {

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

        overflow-y: auto;

        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    .nav-list {
        height: auto;
        display: block;
        padding: 10px 20px 25px;
    }


    .nav-item {
        height: auto;
        display: block;
        /* border-bottom: 1px solid #e5e5e5; */
    }


    .nav-link {

        width: 100%;

        min-height: 58px;

        height: auto;

        justify-content: space-between;

        padding: 0;

        font-size: 18px;
        text-align: left;
        color: #fff;
        font-weight: 500;

    }
.dropdown-arrow {
            width: 14px;
        height: 14px;
        border-right: 2px solid #fff;
        border-bottom: 2px solid #fff;
        transform: rotate(-45deg);
}
.has-dropdown:hover .dropdown-arrow, .has-dropdown.active .dropdown-arrow {
    transform: rotate(45deg);
    margin-top: -1px;
}
.nav-link:hover {
    color: #fff;
}

    .nav-link::after {

        display: none !important;
    }


    .arrow {

        transition: transform .3s ease;
    }


    .has-dropdown.active
    > .nav-link
    .arrow {

        transform: rotate(180deg);
    }


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

    .mega-menu {

        position: static;

        width: 100%;

        display: block;

        padding: 0;

        margin: 0;

        border-radius: 0;

        box-shadow: none;

        background: #f8f9fb;

        transform: none;

        opacity: 1;

        visibility: visible;

        max-height: 0;

        overflow: hidden;

        transition:
            max-height .4s ease;
    }

    .mega-menu::before {

        display: none;
    }


    .has-dropdown.active
    > .mega-menu {

        max-height: max-content;
        background: transparent;
        border-top: 1px solid #90a9d9;
        overflow: scroll;
        width: 100% !important;

    }


    .mega-column {

        padding: 15px 0px !important;

    }


    .mega-column + .mega-column {
        border-left: 0;
        border-top: 1px solid #90a9d9;
    }
    .mega-menu{
        background: #1f3764;
    }
    .simple-dropdown{
                background: #1f3764;
    }


    .mega-column h3 {
        font-size: 19px;
        margin-bottom: 0px;
        border-bottom: 0;
        color: #ffb3b3;
        font-weight: 500;
        letter-spacing: 0.5px;
        margin-top: 8px;
    }


    .mega-column a {
        min-height: 48px;
        font-size: 16px;
        padding: 3px 0;
        color: #fff;
    }

    .giftcity-dropdown-bx h4{
        font-size: 17px; color: #fff;
    }

    .mega-column a span {
        font-size: 32px;
        height: 42px;
    }


    /* =================================
       SIMPLE MOBILE DROPDOWN
    ================================= */

    .simple-dropdown {

        position: static;

        width: 100%;

        padding: 0 15px;

        border-radius: 0;

        box-shadow: none;

        background: #1f3764;

        transform: none;

        opacity: 1;

        visibility: visible;

        max-height: 0;

        overflow: hidden;

        transition:
            max-height .35s ease;
    }


    .has-dropdown.active
    > .simple-dropdown {

        max-height: 500px;
        background: #1f3764;

    }


    .simple-dropdown a {
        padding: 8px 5px;
        border-bottom: 0;
        font-size: 16px;
        color: #fff;
        letter-spacing: 0.5px;
    }
    .giftcity-dropdown-bx {
        border-bottom: 1px solid #90a9d9;
    }
    .mobile-block-icon{
        width: 100%;
        display: flex !important;
        margin: 13px auto;
        height: 60px;
        border-radius: 10px;
        font-size: 20px;
        background: #17bf37 !important;
        border: 1px solid #17bf37;
    }
    .mobile-block-icon .whatsapp-svg{
        width: 35px !important;
        height: 35px !important;
    }

    .gp-mobile-call {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 14px;
        color: #222;
        text-decoration: none;
        background: #f7f7f7;
        border-radius: 10px;
        margin-top: 20px;
    }
    .gp-mobile-call > span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        color: #ffffff;
        background: #d71920;
        border-radius: 50%;
        font-size: 18px;
    }
    .gp-mobile-call small {
        display: block;
        margin-bottom: 0px;
        color: #4e4e4e;
        font-size: 14px;
    }
    .gp-mobile-call strong {
        display: block;
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    .mobile-menu-btn {
        width: 43px;
        height: 40px;
        border: 1px solid #ccc;
        border-radius: 6px;
        padding-left: 7px;
    }


}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {
    
    .site-header {

        height: 70px;
    }

    .main-navigation {

        top: 70px;
    }

    .main-navigation.menu-open {
        max-height: calc(100vh - -170px);
        height: calc(100vh - 60px);
    }

    .logo img {

        width: 165px;
    }

    .mobile-menu-btn {

        width: 42px;
        height: 40px;
        border: 1px solid #ccc;
        border-radius: 6px;
        padding-left: 8px;
    }

    .mobile-menu-btn span {

        width: 25px;
    }


}


@media (max-width: 375px) {
.has-dropdown.active
    > .mega-menu {
        max-height: max-content;
        background: transparent;
        border-top: 1px solid #90a9d9;
        overflow: scroll;

    }
    .main-navigation.menu-open {
        max-height: calc(100vh - -16px);
        height: calc(100% - -20px);
}
}