/*==================================
        FALCON HEADER
==================================*/

.header{
    font-family: 'IranYekan';

    width:100%;

    position:relative;

    z-index:1000;

}

/*==================================
        HEADER CONTAINER
==================================*/

.header-container{

    max-width:1400px;

    height:90px;

    margin:0 auto;

    padding:0 60px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    direction:ltr;

}

/*==================================
        LOGO
==================================*/

.header-logo{

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

}

.header-logo img{

    width:200px;

    height:auto;

    display:block;

    object-fit:contain;

}

/*==================================
        DESKTOP NAVIGATION
==================================*/

.header-nav{

    display:flex;

    align-items:center;

    justify-content:center;

}

.header-nav ul{

    display:flex;

    align-items:center;

    gap:46px;

    list-style:none;

    margin:0;

    padding:0;

}

.header-nav li{

    display:flex;

    align-items:center;

}

.header-nav a{

    position:relative;

    text-decoration:none;

    color:#f4f4f4;

    font-size:16px;

    font-weight:700;

    transition:color .35s ease;

}

.header-nav a::after{

    content:"";

    position:absolute;

    right:0;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:50px;

    background:#ffbd32;

    transition:width .35s ease;

}

.header-nav a:hover{

    color:#ffbd32;

}

.header-nav a:hover::after{

    width:100%;

}

/*==================================
        CTA BUTTON
==================================*/

.header-cta{

    display:flex;

    align-items:center;

    justify-content:center;

    min-width:155px;

    padding:14px 34px;

    border-radius:999px;

    text-decoration:none;

    font-size:15px;

    font-weight:800;

    color:#111;

    background:linear-gradient(135deg,#ffbd32,#ff7a00);

    transition:

        transform .35s ease,

        box-shadow .35s ease;

}

.header-cta:hover{

    transform:translateY(-3px);

    box-shadow:0 14px 30px rgba(255,140,0,.28);

}

/*==================================
        HAMBURGER BUTTON
==================================*/

.menu-toggle{

    width:48px;

    height:48px;

    display:none;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    gap:7px;

    padding:0;

    border:none;

    background:transparent;

    cursor:pointer;

    z-index:2100;

}

.menu-toggle span{

    width:28px;

    height:2px;

    border-radius:50px;

    background:#ffffff;

    transition:

        transform .40s ease,

        opacity .30s ease,

        width .30s ease;

}

.menu-toggle:hover span{

    width:32px;

}

.menu-toggle.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}
/*==================================
        MOBILE OVERLAY
==================================*/

.mobile-overlay{

    position:fixed;

    inset:0;

    z-index:2000;

    display:flex;

    justify-content:flex-end;

    opacity:0;

    visibility:hidden;

    background:rgba(0,0,0,.12);

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    transition:
        opacity .35s ease,
        visibility .35s ease;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}

/*==================================
        MOBILE PANEL
==================================*/

.mobile-panel{

    position:relative;

    width:100%;

    max-width:420px;

    height:100vh;

    padding:35px 28px;

    display:flex;

    flex-direction:column;

    align-items:center;

    background:rgba(18,18,18,.18);

    backdrop-filter:blur(28px) saturate(180%);

    -webkit-backdrop-filter:blur(28px) saturate(180%);

    border-left:1px solid rgba(255,255,255,.08);

    box-shadow:
        -15px 0 60px rgba(0,0,0,.28);

    transform:translateX(70px);

    opacity:0;

    transition:
        transform .55s cubic-bezier(.22,1,.36,1),
        opacity .45s ease;

    transition-delay:.15s;

}

.mobile-overlay.active .mobile-panel{

    transform:translateX(0);

    opacity:1;

}

/*==================================
        CLOSE BUTTON
==================================*/

.mobile-close{

    position:absolute;

    top:24px;

    left:24px;

    width:46px;

    height:46px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:none;

    outline:none;

    border-radius:50%;

    cursor:pointer;

    color:#fff;

    font-size:22px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    transition:
        transform .35s ease,
        background .35s ease;

}

.mobile-close:hover{

    transform:rotate(90deg);

    background:rgba(255,255,255,.15);

}

/*==================================
        MOBILE LOGO
==================================*/

.mobile-logo{

    margin-top:40px;

    margin-bottom:55px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.mobile-logo img{

    width:180px;

    height:auto;

    display:block;

}
/*==================================
        MOBILE NAVIGATION
==================================*/

.mobile-nav{

    width:100%;

    flex:1;

    display:flex;

    align-items:center;

    justify-content:center;

}

.mobile-nav ul{

    width:100%;

    margin:0;

    padding:0;

    list-style:none;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:18px;

}

/*==================================
        MOBILE ITEMS
==================================*/

.mobile-nav li{

    width:100%;

    display:flex;

    justify-content:center;

    opacity:0;

    transform:translateY(20px);

    animation:mobileItem .55s ease forwards;

}
.mobile-overlay.active .mobile-nav li:nth-child(1){

    animation-delay:.22s;

}

.mobile-overlay.active .mobile-nav li:nth-child(2){

    animation-delay:.30s;

}

.mobile-overlay.active .mobile-nav li:nth-child(3){

    animation-delay:.38s;

}

.mobile-overlay.active .mobile-nav li:nth-child(4){

    animation-delay:.46s;

}

/*==================================
        MOBILE LINK
==================================*/
.mobile-nav a{

    width:280px;

    min-height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    padding:0 24px;

    margin:auto;

    text-align:center;

    text-decoration:none;

    color:#fff;

    font-size:17px;

    font-weight:700;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    text-shadow:0 2px 10px rgba(0,0,0,.45);

    transition:
        transform .35s ease,
        background .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}

.mobile-nav a:hover{

    transform:translateY(-4px);

    background:rgba(255,255,255,.12);

    border-color:rgba(255,189,50,.35);

    box-shadow:0 15px 35px rgba(0,0,0,.20);

}

/*==================================
        ICON
==================================*/

.mobile-nav i{

    font-size:20px;

    color:#ffbd32;

    min-width:24px;

    text-align:center;

}

/*==================================
        TEXT
==================================*/

.mobile-nav span{

    text-align:center;

    letter-spacing:.2px;

}

/*==================================
        MOBILE CTA
==================================*/

.mobile-menu-footer{

    width:100%;

    padding-top:30px;

}

.mobile-cta{

    width:100%;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    border-radius:999px;

    background:linear-gradient(135deg,#ffbd32,#ff7600);

    color:#111;

    font-size:16px;

    font-weight:800;

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}

.mobile-cta:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(255,140,0,.28);

}

/*==================================
        ITEMS ANIMATION
==================================*/

@keyframes mobileItem{

    from{

        opacity:0;

        transform:translateY(20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}
/*==================================
        TABLET
==================================*/

@media(max-width:992px){

    .header-container{

        height:84px;

        padding:0 36px;

    }

    .header-nav,
    .header-cta{

        display:none;

    }

    .menu-toggle{

        display:flex;

        order:1;

    }

    .header-logo{

        order:2;

        margin-left:auto;

    }

    .header-logo img{

        width:180px;

    }

}

/*==================================
        MOBILE
==================================*/

@media(max-width:768px){

    .header-container{

        height:78px;

        padding:0 24px;

    }

    .mobile-panel{

        max-width:100%;

        width:100%;

        border-left:none;

    }

    .mobile-logo img{

        width:200px;

    }

    .mobile-nav ul{

        gap:16px;

    }

    .mobile-nav a{

        min-height:58px;

        font-size:16px;

        border-radius:20px;

    }

    .mobile-nav i{

        font-size:18px;

    }

    .mobile-cta{

        height:56px;

        font-size:15px;

    }

}

/*==================================
        SMALL MOBILE
==================================*/

@media(max-width:576px){

    .header-container{

        height:72px;

        padding:0 18px;

    }

    .header-logo img{

        width:150px;

    }

    .menu-toggle{

        width:42px;

        height:42px;

    }

    .menu-toggle span{

        width:24px;

    }

    .mobile-panel{

        padding:30px 18px;

    }

    .mobile-logo{

        margin-top:34px;

        margin-bottom:46px;

    }

    .mobile-logo img{

        width:180px;

    }

    .mobile-close{

        top:18px;

        left:18px;

        width:42px;

        height:42px;

        font-size:20px;

    }

    .mobile-nav a{

        min-height:54px;

        padding:16px;

        font-size:15px;

    }

    .mobile-nav i{

        font-size:17px;

    }

    .mobile-cta{

        height:54px;

        font-size:15px;

    }

}

/*==================================
        DESKTOP ONLY
==================================*/

@media(min-width:993px){

    .mobile-overlay{

        display:none;

    }

}

/*==================================
        PERFORMANCE
==================================*/

.mobile-overlay,
.mobile-panel,
.mobile-nav a,
.mobile-cta,
.mobile-close,
.menu-toggle span{

    will-change:transform,opacity;

}

/*==================================
        SCROLLBAR
==================================*/

.mobile-panel{

    overflow-y:auto;

    scrollbar-width:none;

    -ms-overflow-style:none;

}

.mobile-panel::-webkit-scrollbar{

    display:none;

}