/******************************************************************
RESPONSIVE.CSS
PART 1
HEADER & NAVIGATION
Nomad Park Kuwait
******************************************************************/


/*==================================================
LARGE TABLET (991px)
==================================================*/

@media (max-width:991px){

.main-nav{

    padding:12px 0;

}

.logo img{

    height:42px;

}

.menu{

    gap:16px;
    margin:0 20px;

}

.menu li a{

    font-size:12px;

}

.right-menu{

    gap:12px;

}

.nav-icon{

    width:38px;
    height:38px;

}

.ticket-btn{

    min-width:150px;
    height:44px;
    padding:0 20px;
    font-size:12px;

}

}


/*==================================================
TABLET (768px - 991px)
==================================================*/

@media (max-width:768px){

.main-nav{

    padding:12px 0;

}

.logo img{

    height:40px;

}

/* Hide Desktop Menu */

.menu{

    display:none;

}

/* Hide Right Menu */

.right-menu{

    display:none;

}

/* Header Layout */

.main-nav .container{

    display:flex;
    justify-content:space-between;
    align-items:center;

}

/* Mobile Toggle */

.mobile-toggle{

    display:flex;
    align-items:center;
    justify-content:center;

    width:44px;
    height:44px;

    border-radius:12px;

    background:#132236;

    color:#fff;

    cursor:pointer;

    font-size:22px;

    transition:.3s;

}

.mobile-toggle:hover{

    background:#FF9A22;

}

}


/*==================================================
MOBILE (576px)
==================================================*/

@media (max-width:576px){

.main-nav{

    padding:10px 0;

}

.logo img{

    height:36px;

}

.mobile-toggle{

    width:42px;
    height:42px;

    font-size:20px;

}

}


/*==================================================
SMALL MOBILE (400px)
==================================================*/

@media (max-width:400px){

.logo img{

    height:32px;

}

.mobile-toggle{

    width:40px;
    height:40px;

    font-size:18px;

}

}
/******************************************************************
RESPONSIVE.CSS
PART 2
HERO SECTION
******************************************************************/


/*==================================================
TABLET (991px)
==================================================*/

@media (max-width:991px){

.hero{

    height:auto;
    min-height:700px;
    max-height:none;

}

.hero-overlay{

    background:
    linear-gradient(
        180deg,
        rgba(5,12,28,.88) 0%,
        rgba(5,12,28,.65) 55%,
        rgba(5,12,28,.55) 100%
    );

}

.hero-wrapper{

    min-height:700px;
    justify-content:center;
    text-align:center;

}

.hero-content{

    max-width:700px;
    padding-top:120px;

}

.hero-tag{

    font-size:14px;
    margin-bottom:20px;

}

.hero h1{

    font-size:64px;
    line-height:1.05;
    letter-spacing:-1px;

}

.hero p{

    max-width:650px;
    margin:25px auto 35px;
    font-size:18px;

}

.hero-buttons{

    justify-content:center;
    gap:16px;

}

}


/*==================================================
MOBILE (767px)
==================================================*/

@media (max-width:767px){

.hero{

    min-height:620px;
    padding:90px 0 60px;

}

.hero-wrapper{

    min-height:auto;

}

.hero-content{

    max-width:100%;
    padding-top:20px;

}

.hero-tag{

    font-size:12px;
    letter-spacing:2px;

}

.hero h1{

    font-size:44px;
    line-height:1.10;
    margin-bottom:20px;

}

.hero p{

    font-size:16px;
    line-height:1.7;
    margin-bottom:30px;

}

.hero-buttons{

    flex-direction:column;
    gap:15px;

}

.btn-booking,
.btn-explore{

    width:100%;
    max-width:340px;
    height:54px;

}

}


/*==================================================
SMALL MOBILE (480px)
==================================================*/

@media (max-width:480px){

.hero{

    min-height:560px;
    padding:80px 0 50px;

}

.hero-content{

    text-align:center;

}

.hero-tag{

    font-size:11px;
    margin-bottom:16px;

}

.hero h1{

    font-size:36px;
    line-height:1.15;

}

.hero p{

    font-size:15px;
    line-height:1.7;

}

.btn-booking,
.btn-explore{

    max-width:100%;
    height:50px;
    font-size:14px;

}

.btn-booking i,
.btn-explore i{

    font-size:13px;

}

}

/******************************************************************
RESPONSIVE.CSS
PART 3
INFORMATION BAR
******************************************************************/


/*==================================================
TABLET (991px)
==================================================*/

@media (max-width:991px){

.info-bar-section{

    margin-top:-40px;

}

.info-bar{

    grid-template-columns:repeat(2,1fr);

    border-radius:20px;

}

.info-item{

    padding:22px;

}

/* Remove right border on every second card */

.info-item:nth-child(2){

    border-right:none;

}

.info-item:nth-child(1),
.info-item:nth-child(2){

    border-bottom:1px solid rgba(255,255,255,.08);

}

}


/*==================================================
MOBILE (767px)
==================================================*/

@media (max-width:767px){

.info-bar-section{

    margin-top:-25px;

    padding:0 10px;

}

.info-bar{

    grid-template-columns:1fr;

    border-radius:18px;

}

.info-item{

    border-right:none;

    border-bottom:1px solid rgba(255,255,255,.08);

    padding:18px 20px;

    gap:15px;

}

.info-item:last-child{

    border-bottom:none;

}

.info-icon{

    width:50px;
    height:50px;

}

.info-icon i{

    font-size:18px;

}

.info-text span{

    font-size:10px;
    letter-spacing:1px;

}

.info-text h5{

    font-size:16px;

}

}


/*==================================================
SMALL MOBILE (480px)
==================================================*/

@media (max-width:480px){

.info-bar-section{

    margin-top:-15px;

}

.info-bar{

    border-radius:16px;

}

.info-item{

    padding:16px;

    gap:12px;

}

.info-icon{

    width:44px;
    height:44px;

}

.info-icon i{

    font-size:16px;

}

.info-text span{

    font-size:9px;

}

.info-text h5{

    font-size:15px;

}

}

/******************************************************************
RESPONSIVE.CSS
PART 4
ENTERTAINMENT CATEGORIES
******************************************************************/


/*==================================================
TABLET (991px)
==================================================*/

@media (max-width:991px){

.categories-section{

    padding:60px 0;

}

.category-grid{

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.category-card{

    padding:20px;

}

.category-card img{

    height:160px;

}

.category-icon{

    width:58px;
    height:58px;

    font-size:24px;

}

.category-card h3{

    font-size:22px;

}

.category-card p{

    font-size:14px;

}

}


/*==================================================
MOBILE (767px)
==================================================*/

@media (max-width:767px){

.categories-section{

    padding:50px 0;

}

.category-grid{

    grid-template-columns:1fr;

    gap:18px;

}

.category-card{

    padding:18px;

    border-radius:18px;

}

.category-icon{

    width:54px;
    height:54px;

    font-size:22px;

    margin-bottom:16px;

}

.category-card h3{

    font-size:20px;

    margin-bottom:8px;

}

.category-card p{

    font-size:14px;

    margin-bottom:16px;

}

.category-card img{

    width:100%;
    height:180px;

    border-radius:14px;

}

}


/*==================================================
SMALL MOBILE (480px)
==================================================*/

@media (max-width:480px){

.categories-section{

    padding:45px 0;

}

.category-card{

    padding:16px;

    border-radius:16px;

}

.category-icon{

    width:50px;
    height:50px;

    font-size:20px;

}

.category-card h3{

    font-size:18px;

}

.category-card p{

    font-size:13px;

}

.category-card img{

    height:160px;

}

}


/******************************************************************
RESPONSIVE.CSS
PART 5
FEATURED ATTRACTIONS
******************************************************************/


/*==================================================
TABLET (991px)
==================================================*/

@media (max-width:991px){

.featured-section{

    padding:70px 0;

}

.featured-wrapper{

    width:100%;
    grid-template-columns:1fr;
    gap:40px;

}

.featured-left{

    text-align:center;
    padding:0;

}

.featured-left h2{

    font-size:42px;

}

.featured-left h2 span{

    display:inline;

}

.featured-left p{

    max-width:700px;
    margin:0 auto 30px;

}

.btn-view-all{

    margin:auto;

}

.featured-cards{

    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.featured-image img{

    height:220px;

}

}


/*==================================================
MOBILE (767px)
==================================================*/

@media (max-width:767px){

.featured-section{

    padding:60px 0;

}

.featured-wrapper{

    width:100%;
    gap:30px;

}

.featured-left{

    text-align:center;

}

.featured-left h2{

    font-size:34px;
    line-height:1.15;

}

.featured-left p{

    font-size:15px;
    margin-bottom:25px;

}

.btn-view-all{

    width:100%;
    justify-content:center;

}

.featured-cards{

    grid-template-columns:1fr;
    gap:20px;

}

.featured-card{

    border-radius:18px;

}

.featured-image img{

    height:240px;

}

.featured-content{

    padding:18px;

}

.featured-content h3{

    font-size:20px;

}

.featured-meta{

    flex-direction:column;
    align-items:flex-start;
    gap:8px;

}

}


/*==================================================
SMALL MOBILE (480px)
==================================================*/

@media (max-width:480px){

.featured-section{

    padding:50px 0;

}

.featured-left h2{

    font-size:30px;

}

.featured-left p{

    font-size:14px;

}

.btn-view-all{

    width:100%;
    padding:14px 20px;
    font-size:13px;

}

.featured-image img{

    height:210px;

}

.featured-content{

    padding:16px;

}

.featured-content h3{

    font-size:18px;

}

.featured-meta{

    font-size:12px;

}

.wishlist{

    width:34px;
    height:34px;

}

}


/******************************************************************
RESPONSIVE.CSS
PART 6
EVENTS & PARTIES
******************************************************************/


/*==================================================
TABLET (991px)
==================================================*/

@media (max-width:991px){

.events-section{

    padding:70px 0;

}

.events-header{

    max-width:700px;
    margin:0 auto 45px;

}

.events-header h2{

    font-size:42px;

}

.events-header p{

    font-size:16px;

}

.events-grid{

    width:100%;
    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.event-card{

    border-radius:20px;

}

.event-image img{

    height:240px;

}

.event-content{

    padding:30px 22px 22px;

}

.event-content h3{

    font-size:22px;

}

.event-content p{

    min-height:60px;
    font-size:14px;

}

.events-button{

    margin-top:40px;

}

}


/*==================================================
MOBILE (767px)
==================================================*/

@media (max-width:767px){

.events-section{

    padding:60px 0;

}

.events-header{

    width:100%;
    margin-bottom:35px;

}

.events-header h2{

    font-size:34px;
    line-height:1.2;

}

.events-header p{

    font-size:15px;
    line-height:1.7;

}

.events-grid{

    width:100%;
    grid-template-columns:1fr;
    gap:20px;

}

.event-card{

    border-radius:18px;

}

.event-image img{

    height:260px;

}

.event-icon{

    width:50px;
    height:50px;
    left:18px;
    bottom:-20px;

}

.event-icon i{

    font-size:18px;

}

.event-content{

    padding:32px 20px 20px;

}

.event-content h3{

    font-size:22px;
    margin-bottom:10px;

}

.event-content p{

    font-size:14px;
    min-height:auto;
    margin-bottom:16px;

}

.event-content a{

    font-size:14px;

}

.btn-event-book{

    width:100%;
    justify-content:center;

}

}


/*==================================================
SMALL MOBILE (480px)
==================================================*/

@media (max-width:480px){

.events-section{

    padding:50px 0;

}

.events-header h2{

    font-size:30px;

}

.events-header p{

    font-size:14px;

}

.event-card{

    border-radius:16px;

}

.event-image img{

    height:220px;

}

.event-icon{

    width:46px;
    height:46px;

}

.event-icon i{

    font-size:16px;

}

.event-content{

    padding:28px 18px 18px;

}

.event-content h3{

    font-size:20px;

}

.event-content p{

    font-size:13px;

}

.btn-event-book{

    width:100%;
    padding:15px 20px;
    font-size:14px;

}

}


/******************************************************************
RESPONSIVE.CSS
PART 7
OFFERS & PROMOTIONS
******************************************************************/


/*==================================================
TABLET (991px)
==================================================*/

@media (max-width:991px){

.offers-section{

    padding:70px 0;

}

.offers-layout{

    grid-template-columns:1fr;
    gap:35px;

}

/* Sidebar moves to top */

.offers-left{

    order:-1;

    position:relative;
    top:0;

    padding:35px;

}

.offers-left h2{

    font-size:40px;

}

.offers-left p{

    margin-bottom:25px;

}

.offer-menu{

    gap:12px;

}

.offer-menu a{

    padding:14px 18px;

}

.offers-right{

    grid-template-columns:repeat(2,1fr);
    gap:22px;

}

.offer-big-card{

    height:320px;

}

.offer-content{

    padding:22px;

}

.offer-content h3{

    font-size:24px;

}

}


/*==================================================
MOBILE (767px)
==================================================*/

@media (max-width:767px){

.offers-section{

    padding:60px 0;

}

.offers-layout{

    gap:30px;

}

/* Sidebar */

.offers-left{

    padding:24px;
    border-radius:18px;

}

.offers-left .section-tag{

    font-size:11px;

}

.offers-left h2{

    font-size:34px;
    line-height:1.15;

}

.offers-left p{

    font-size:15px;
    margin-bottom:22px;

}

/* Menu */

.offer-menu{

    gap:10px;

}

.offer-menu a{

    padding:14px 16px;
    font-size:14px;

}

.offer-menu a i{

    width:36px;
    height:36px;
    font-size:14px;

}

/* Cards */

.offers-right{

    grid-template-columns:1fr;
    gap:20px;

}

.offer-big-card{

    height:330px;
    border-radius:18px;

}

.offer-content{

    padding:20px;

}

.offer-content h3{

    font-size:24px;

}

.offer-content p{

    font-size:14px;

}

.purchase-btn{

    width:100%;
    justify-content:center;

}

}


/*==================================================
SMALL MOBILE (480px)
==================================================*/

@media (max-width:480px){

.offers-section{

    padding:50px 0;

}

.offers-left{

    padding:20px;

}

.offers-left h2{

    font-size:30px;

}

.offers-left p{

    font-size:14px;

}

.offer-menu a{

    font-size:13px;
    padding:12px 14px;

}

.offer-menu a i{

    width:34px;
    height:34px;
    font-size:13px;

}

.offer-big-card{

    height:280px;

}

.offer-content{

    padding:18px;

}

.offer-badge{

    font-size:10px;
    padding:6px 14px;

}

.offer-content h3{

    font-size:20px;

}

.offer-content p{

    display:none;

}

.purchase-btn{

    width:100%;
    height:46px;
    font-size:14px;

}

}


/******************************************************************
RESPONSIVE.CSS
PART 8
FOOD & DRINKS
******************************************************************/


/*==================================================
TABLET (991px)
==================================================*/

@media (max-width:991px){

.food-section{

    padding:70px 0;

}

.food-header{

    margin-bottom:40px;

}

.food-header h2{

    font-size:42px;

}

.food-header p{

    max-width:650px;
    font-size:16px;

}

.food-grid{

    grid-template-columns:repeat(2,1fr);
    gap:20px;

}

.food-card{

    height:220px;

}

.food-overlay{

    padding:18px;

}

.food-overlay h3{

    font-size:22px;

}

.food-button{

    margin-top:40px;

}

.menu-btn{

    padding:15px 34px;

}

}


/*==================================================
MOBILE (767px)
==================================================*/

@media (max-width:767px){

.food-section{

    padding:60px 0;

}

.food-header{

    margin-bottom:35px;

}

.food-header h2{

    font-size:34px;
    line-height:1.2;

}

.food-header p{

    font-size:15px;
    line-height:1.7;

}

.food-grid{

    grid-template-columns:1fr;
    gap:18px;

}

.food-card{

    height:240px;
    border-radius:18px;

}

.food-overlay{

    padding:18px;

}

.food-overlay h3{

    font-size:22px;

}

/* Always show subtitle on mobile */

.food-overlay p{

    opacity:1;
    margin-top:6px;

}

/* Always show link on mobile */

.food-overlay a{

    opacity:1;
    transform:none;
    margin-top:10px;

}

.menu-btn{

    width:100%;
    justify-content:center;

}

}


/*==================================================
SMALL MOBILE (480px)
==================================================*/

@media (max-width:480px){

.food-section{

    padding:50px 0;

}

.food-header h2{

    font-size:30px;

}

.food-header p{

    font-size:14px;

}

.food-card{

    height:200px;
    border-radius:16px;

}

.food-overlay{

    padding:16px;

}

.food-overlay h3{

    font-size:20px;

}

.food-overlay p{

    font-size:12px;

}

.food-overlay a{

    font-size:13px;

}

.menu-btn{

    width:100%;
    height:48px;
    font-size:14px;

}

}

/******************************************************************
RESPONSIVE.CSS
PART 9
GALLERY
******************************************************************/


/*==================================================
TABLET (991px)
==================================================*/

@media (max-width:991px){

.gallery-section{

    padding:70px 0;

}

.gallery-header{

    margin-bottom:40px;

}

.gallery-header h2{

    font-size:42px;

}

.gallery-header p{

    max-width:650px;
    font-size:16px;

}

/* Statistics */

.gallery-stats{

    gap:18px;

}

.gallery-stat{

    flex:1;
    min-width:220px;

    padding:18px 22px;

}

/* Filter */

.gallery-filter{

    gap:12px;

}

.filter-btn{

    padding:12px 20px;

}

/* Gallery */

.gallery-grid{

    grid-template-columns:repeat(2,1fr);
    gap:18px;

}

.gallery-item{

    height:240px;

}

.gallery-item.large{

    grid-column:span 2;
    height:380px;

}

.gallery-item.wide{

    grid-column:span 2;
    height:240px;

}

.gallery-overlay{

    padding:22px;

}

.gallery-overlay h3{

    font-size:22px;

}

.gallery-footer{

    margin-top:40px;

}

}


/*==================================================
MOBILE (767px)
==================================================*/

@media (max-width:767px){

.gallery-section{

    padding:60px 0;

}

.gallery-header{

    margin-bottom:35px;

}

.gallery-header h2{

    font-size:34px;

}

.gallery-header p{

    font-size:15px;

}

/* Statistics */

.gallery-stats{

    flex-direction:column;
    gap:15px;

}

.gallery-stat{

    width:100%;
    justify-content:flex-start;

}

/* Filter */

.gallery-filter{

    justify-content:flex-start;
    overflow-x:auto;

    flex-wrap:nowrap;

    padding-bottom:8px;

    scrollbar-width:none;

}

.gallery-filter::-webkit-scrollbar{

    display:none;

}

.filter-btn{

    white-space:nowrap;
    flex-shrink:0;

}

/* Gallery */

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-item,

.gallery-item.large,

.gallery-item.wide{

    grid-column:span 1;

    height:260px;

}

.gallery-overlay{

    padding:20px;

}

.gallery-overlay span{

    font-size:11px;

}

.gallery-overlay h3{

    font-size:20px;

}

.gallery-overlay a{

    opacity:1;

    transform:none;

}

.gallery-btn{

    width:100%;
    justify-content:center;

}

}


/*==================================================
SMALL MOBILE (480px)
==================================================*/

@media (max-width:480px){

.gallery-section{

    padding:50px 0;

}

.gallery-header h2{

    font-size:30px;

}

.gallery-header p{

    font-size:14px;

}

.gallery-stat{

    padding:16px;

}

.gallery-stat h3{

    font-size:20px;

}

.gallery-stat span{

    font-size:13px;

}

.filter-btn{

    padding:10px 16px;

    font-size:13px;

}

.gallery-item,

.gallery-item.large,

.gallery-item.wide{

    height:220px;

}

.gallery-overlay{

    padding:18px;

}

.gallery-overlay h3{

    font-size:18px;

}

.gallery-overlay a{

    font-size:13px;

}

.gallery-btn{

    width:100%;
    height:50px;

    font-size:14px;

}

}


/******************************************************************
RESPONSIVE.CSS
PART 10
CONTACT SECTION
******************************************************************/


/*==================================================
TABLET (991px)
==================================================*/

@media (max-width:991px){

.contact-section{

    padding:70px 0;

}

.contact-wrapper{

    grid-template-columns:1fr;

    gap:35px;

}

/* Left Side */

.contact-left{

    position:relative;

    top:0;

    text-align:center;

}

.contact-left h2{

    font-size:42px;

}

.contact-left p{

    max-width:700px;

    margin:0 auto 30px;

}

/* Contact Cards */

.contact-card{

    text-align:left;

}

/* Right Side */

.contact-right{

    grid-template-columns:1fr;

}

/* Map */

.contact-map{

    grid-column:auto;

    height:420px;

}

/* Floating Card */

.map-info-card{

    position:absolute;

    left:20px;

    bottom:20px;

    top:auto;

    width:330px;

}

/* Bottom Section */

.bottom-contact{

    grid-column:auto;

    grid-template-columns:1fr;

    gap:20px;

}

/* Quick Actions */

.quick-grid{

    grid-template-columns:repeat(2,1fr);

}

}


/*==================================================
MOBILE (767px)
==================================================*/

@media (max-width:767px){

.contact-section{

    padding:60px 0;

}

.contact-left{

    text-align:center;

}

.contact-left h2{

    font-size:34px;

}

.contact-left p{

    font-size:15px;

}

/* Contact Cards */

.contact-card{

    padding:18px;

}

.contact-icon{

    width:52px;

    height:52px;

}

.contact-icon i{

    font-size:18px;

}

/* Map */

.contact-map{

    height:300px;

}

/* Map Card */

.map-info-card{

    position:relative;

    left:0;

    bottom:0;

    width:100%;

    margin:15px;

}

.map-info-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

}

.map-info-card img{

    width:100px;

    height:100px;

}

.map-info h3{

    font-size:24px;

}

/* Opening Hours */

.opening-hours{

    padding:20px;

}

/* Quick Actions */

.quick-grid{

    grid-template-columns:1fr;

}

.quick-card{

    height:140px;

}

/* Social */

.quick-social-icons{

    justify-content:center;

}

}


/*==================================================
SMALL MOBILE (480px)
==================================================*/

@media (max-width:480px){

.contact-section{

    padding:50px 0;

}

.contact-left h2{

    font-size:30px;

}

.contact-left p{

    font-size:14px;

}

.contact-card{

    padding:16px;

}

.contact-icon{

    width:46px;

    height:46px;

}

.contact-icon i{

    font-size:16px;

}

.contact-info h4{

    font-size:16px;

}

.contact-info p{

    font-size:13px;

}

/* Map */

.contact-map{

    height:250px;

}

.map-info-card{

    margin:10px;

    padding:18px;

}

.map-info-card img{

    width:80px;

    height:80px;

}

.map-info h3{

    font-size:20px;

}

.rating{

    flex-wrap:wrap;

    justify-content:center;

}

.direction-btn{

    width:100%;

    justify-content:center;

}

/* Opening Hours */

.hours-header h3{

    font-size:18px;

}

.opening-hours span,

.opening-hours strong{

    font-size:12px;

}

/* Quick Actions */

.quick-card{

    height:120px;

    padding:16px;

}

.quick-card h4{

    font-size:16px;

}

.quick-card p{

    font-size:12px;

}

/* Social Icons */

.quick-social-icons{

    gap:10px;

}

.quick-social-icons a{

    width:42px;

    height:42px;

    font-size:16px;

}

}

/******************************************************************
RESPONSIVE.CSS
PART 11
FOOTER
******************************************************************/


/*==================================================
TABLET (991px)
==================================================*/

@media (max-width:991px){

.footer{

    padding:50px 0 25px;

}

.footer-logo{

    width:170px;

}

.footer-text{

    max-width:650px;

    margin:0 auto 25px;

    font-size:15px;

}

.footer-links{

    gap:18px;

    margin-bottom:25px;

}

.footer-links a{

    font-size:14px;

}

.footer-bottom{

    justify-content:center;

    gap:15px;

    text-align:center;

}

.footer-bottom div{

    justify-content:center;

}

}


/*==================================================
MOBILE (767px)
==================================================*/

@media (max-width:767px){

.footer{

    padding:45px 0 25px;

}

/* Logo */

.footer-logo{

    width:150px;

}

/* Text */

.footer-text{

    font-size:14px;

    line-height:1.7;

    margin-bottom:25px;

}

/* Navigation */

.footer-links{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin-bottom:30px;

    text-align:center;

}

.footer-links a{

    display:block;

    padding:10px;

    border-radius:10px;

    background:rgba(255,255,255,.04);

    transition:.3s;

}

.footer-links a:hover{

    background:rgba(255,154,34,.15);

}

/* Bottom */

.footer-bottom{

    flex-direction:column;

    gap:10px;

    text-align:center;

}

.footer-bottom div{

    flex-wrap:wrap;

    justify-content:center;

    gap:8px;

}

}


/*==================================================
SMALL MOBILE (480px)
==================================================*/

@media (max-width:480px){

.footer{

    padding:40px 0 20px;

}

/* Logo */

.footer-logo{

    width:130px;

}

/* Text */

.footer-text{

    font-size:13px;

}

/* Menu */

.footer-links{

    grid-template-columns:1fr;

    gap:10px;

}

.footer-links a{

    padding:12px;

    font-size:13px;

}

/* Copyright */

.footer-bottom{

    font-size:12px;

}

.footer-bottom div{

    flex-direction:column;

    gap:6px;

}

}
/*==================================================
            PREMIUM MOBILE MENU
==================================================*/

.mobile-menu{

    position:fixed;

    top:0;
    right:-100%;

    width:290px;
    max-width:82%;

    height:100vh;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    background:rgba(7,18,35,.97);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border-left:1px solid rgba(255,255,255,.08);

    box-shadow:-15px 0 45px rgba(0,0,0,.45);

    transition:.45s cubic-bezier(.23,1,.32,1);

    z-index:99999;

}


/*==============================
HEADER
==============================*/

.mobile-menu-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 18px;

    height:68px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.mobile-menu-header img{

    height:28px;

}


/*==============================
CLOSE BUTTON
==============================*/

.close-menu{

    width:36px;

    height:36px;

    border:none;

    border-radius:10px;

    background:rgba(255,255,255,.05);

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.close-menu:hover{

    background:#FF9A22;

}


/*==============================
MENU LIST
==============================*/

.mobile-links{

    list-style:none;

    margin:0;

    padding:10px 16px;

    flex:1;

    overflow-y:auto;

}

.mobile-links li{

    margin:2px 0;

}

.mobile-links a{

    display:flex;

    align-items:center;

    height:46px;

    padding:0 16px;

    border-radius:12px;

    color:#fff;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    transition:.3s;

}

.mobile-links a:hover{

    background:rgba(255,154,34,.18);

    color:#FF9A22;

    transform:translateX(6px);

}


/*==============================
BOOK BUTTON
==============================*/

.mobile-book-btn{

    margin:12px 16px 16px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    color:#fff;

    background:linear-gradient(135deg,#FF9A22,#FF6A00);

    box-shadow:0 10px 25px rgba(255,154,34,.25);

}


/*==============================
OVERLAY
==============================*/

.mobile-overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(3px);

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:99998;

}


/*==============================
ACTIVE
==============================*/

.mobile-menu.active{

    right:0;

}

.mobile-overlay.active{

    opacity:1;

    visibility:visible;

}

body.menu-open{

    overflow:hidden;

}


/*==============================
SCROLLBAR
==============================*/

.mobile-links::-webkit-scrollbar{

    width:5px;

}

.mobile-links::-webkit-scrollbar-thumb{

    background:#FF9A22;

    border-radius:20px;

}