/**********************************************************************
NOMAD PARK KUWAIT
MASTER STYLESHEET
Version : 2.0

TABLE OF CONTENTS
01. Root Variables
02. Reset
03. Container
04. Header
05. Navigation
06. Logo
07. Menu
08. Right Menu
09. Buttons
10. Hero
11. Information Bar
12. Default Sections
13. Utilities
14. Entertainment Categories
15. Responsive
**********************************************************************/


/*==================================================
    NOMAD PARK KUWAIT
    STYLE.CSS
    Version 1.0
==================================================*/


/*==================================================
    ROOT VARIABLES
==================================================*/

:root{

    --primary:#FF9A22;
    --secondary:#FF2E92;

    --white:#ffffff;

    --text:#f3f3f3;

    --dark:#050D18;

    --dark2:#0C1628;

    --transition:.35s ease;

}


/*==================================================
    RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:var(--dark);

    color:var(--white);

    overflow-x:hidden;

    font-size:16px;

    line-height:1.65;

    -webkit-font-smoothing:antialiased;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

}


/*==================================================
    CONTAINER
==================================================*/

.container{

    width:min(92%,1500px);

    margin:auto;

}


/*==================================================
    HEADER
==================================================*/

header{

    position:absolute;

    width:100%;

    left:0;

    top:0;

    z-index:9999;

}


/*==================================================
    NAVIGATION
==================================================*/

.main-nav{

    position:fixed;

    top:0;
    left:0;
    width:100%;
    z-index:9999;

    padding:10px 0;

    background:rgba(7,17,31,.90);

    backdrop-filter:blur(14px);

    transition:.35s;

}

.main-nav .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}


/*==================================================
    LOGO
==================================================*/

.logo{

    flex-shrink:0;

}

.logo img{

    height:48px;

    width:auto;

}


/*==================================================
    MENU
==================================================*/
.menu{

    display:flex;

    align-items:center;

    justify-content:center;

    flex:1;

    gap:24px;

    margin:0 30px;

    list-style:none;

}

.menu li{

    white-space:nowrap;

}

.menu li a{

    display:block;

    position:relative;

    color:#ffffff;

    font-size:13px;

    font-weight:600;

    letter-spacing:.2px;

    text-decoration:none;

    text-transform:uppercase;

    padding:8px 0;

    transition:all .30s ease;

}

.menu li a:hover{

    color:var(--primary);

}

.menu li a.active{

    color:var(--primary);

}

.menu li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:0;

    height:2px;

    background:var(--primary);

    border-radius:30px;

    transition:width .30s ease;

}

.menu li a:hover::after{

    width:100%;

}

.menu li a.active::after{

    width:100%;

}


/*==================================================
    RIGHT MENU
==================================================*/

.right-menu{

    display:flex;

    align-items:center;

    gap:18px;

}

.nav-icon{

    width:42px;

    height:42px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    color:#fff;

    transition:var(--transition);

}

.nav-icon:hover{

    background:rgba(255,255,255,.12);

    color:var(--primary);

    transform:translateY(-2px);

}


/*==================================================
    BOOK BUTTON
==================================================*/
/*==================================================
BOOK TICKET BUTTON
==================================================*/

.ticket-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:185px;

    height:48px;

    padding:0 28px;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        #ff2f92 0%,
        #ff6b4a 50%,
        #ff9a22 100%
    );

    color:#fff;

    font-size:13px;

    font-weight:700;

    letter-spacing:.3px;

    text-transform:uppercase;

    white-space:nowrap;

    transition:all .35s ease;

    box-shadow:
        0 8px 20px rgba(255,100,0,.22);

}

.ticket-btn i{

    font-size:13px;

}

.ticket-btn:hover{

    color:#fff;

    transform:translateY(-3px) scale(1.02);

    box-shadow:
        0 18px 40px rgba(255,120,0,.40);

}

.ticket-btn:active{

    transform:translateY(-1px);

}

/*==================================================
    HERO SECTION
==================================================*/

.hero{

    position:relative;

    height:68vh;

    min-height:650px;

    max-height:780px;

    display:flex;

    align-items:center;

    background:url("../images/hero/hero-banner.jpg") center center/cover no-repeat;

    overflow:hidden;

}

/*==================================================
    HERO OVERLAY
==================================================*/

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(5,12,28,.92) 0%,
        rgba(5,12,28,.72) 35%,
        rgba(5,12,28,.38) 60%,
        rgba(5,12,28,.15) 100%
    );

}

/*==================================================
    HERO CONTAINER
==================================================*/

.hero .container{

    position:relative;

    z-index:10;

    width:100%;

}

/*==================================================
    HERO WRAPPER
==================================================*/

.hero-wrapper{

    display:flex;

    align-items:center;

    min-height:650px;

}

/*==================================================
    HERO CONTENT
==================================================*/

.hero-content{

    max-width:620px;

    padding-top:70px;

}

/*==================================================
    HERO TAG
==================================================*/

.hero-tag{

    display:inline-block;

    color:var(--primary);

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:22px;

}

/*==================================================
    HERO TITLE
==================================================*/

.hero h1{

    font-size:82px;

    font-weight:800;

    line-height:.92;

    letter-spacing:-2px;

    margin-bottom:25px;

    color:#fff;

}

.hero h1 span{

    display:block;

    background:linear-gradient(
        90deg,
        #FF2E92 0%,
        #FF6A4A 45%,
        #FF9A22 100%
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

/*==================================================
    HERO DESCRIPTION
==================================================*/

.hero p{

    max-width:560px;

    font-size:21px;

    color:rgba(255,255,255,.92);

    line-height:1.65;

    margin-bottom:40px;

}

/*==================================================
    HERO BUTTONS
==================================================*/

.hero-buttons{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

/*==================================================
    PRIMARY BUTTON
==================================================*/

.btn-booking{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    height:58px;

    padding:0 34px;

    border-radius:60px;

    background:linear-gradient(
        90deg,
        #FF2E92,
        #FF9A22
    );

    color:#fff;

    font-size:15px;

    font-weight:700;

    transition:.35s;

}

.btn-booking:hover{

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(255,130,0,.35);

}

/*==================================================
    OUTLINE BUTTON
==================================================*/

.btn-explore{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    height:58px;

    padding:0 34px;

    border-radius:60px;

    border:2px solid rgba(255,255,255,.45);

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.35s;

}

.btn-explore:hover{

    background:#fff;

    color:#111;

    border-color:#fff;

    transform:translateY(-4px);

}

/*==================================================
    BUTTON ICON
==================================================*/

.btn-booking i,

.btn-explore i{

    font-size:14px;

}

/*==================================================
    HERO RESPONSIVE
==================================================*/

@media(max-width:1200px){

.hero{

    min-height:620px;

}

.hero h1{

    font-size:70px;

}

.hero p{

    font-size:19px;

}

}

@media(max-width:992px){

.hero{

    height:auto;

    min-height:700px;

}

.hero-wrapper{

    min-height:700px;

    text-align:center;

    justify-content:center;

}

.hero-content{

    max-width:700px;

    padding-top:110px;

}

.hero-buttons{

    justify-content:center;

}

.hero h1{

    font-size:60px;

}

.hero p{

    font-size:18px;

}

}

@media(max-width:576px){

.hero{

    min-height:620px;

}

.hero-content{

    padding-top:90px;

}

.hero h1{

    font-size:46px;

}

.hero-tag{

    font-size:13px;

}

.hero p{

    font-size:17px;

}

.btn-booking,

.btn-explore{

    width:100%;

}

}

/*==================================================
    INFORMATION BAR
==================================================*/
.info-bar-section{

    margin-top:-55px;

    position:relative;

    z-index:100;

}

.info-bar{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    background:rgba(12,18,38,.94);

    backdrop-filter:blur(18px);

    border-radius:22px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 18px 45px rgba(0,0,0,.35);

}

.info-item{

    display:flex;

    align-items:center;

    gap:16px;

    padding:22px 26px;

    border-right:1px solid rgba(255,255,255,.08);

}

.info-item:last-child{

    border-right:none;

}

/*==================================================
    ICON
==================================================*/

.info-icon{

    width:52px;

    height:52px;

    border-radius:50%;

    background:rgba(255,154,34,.12);

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.info-icon i{

    color:var(--primary);

    font-size:20px;

}

/*==================================================
    TEXT
==================================================*/

.info-text{

    line-height:1.2;

}

.info-text span{

    display:block;

    font-size:11px;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#aeb4c4;

    margin-bottom:4px;

}

.info-text h5{

    margin:0;

    color:#fff;

    font-size:16px;

    font-weight:700;

}


/*==================================================
    SECTION DEFAULT
==================================================*/

section{

    position:relative;

}


/*==================================================
    UTILITIES
==================================================*/

.text-center{

    text-align:center;

}

.mt-100{

    margin-top:100px;

}

.mb-100{

    margin-bottom:100px;

}


/*==================================================
    END OF INFORMATION BAR
==================================================*/

/*==================================================
    ENTERTAINMENT CATEGORIES
==================================================*/

.categories-section{

    padding:70px 0 90px;

    background:#f8f9fc;

    position:relative;

}

.category-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:18px;

}

/*==================================================
    CATEGORY CARD
==================================================*/

.category-card{

    background:#ffffff;

    border-radius:18px;

    padding:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

    overflow:hidden;

    cursor:pointer;

}

.category-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

/*==================================================
    ICON
==================================================*/

.category-icon{

    width:54px;

    height:54px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:15px;

    background:linear-gradient(135deg,#ff2f92,#ff9a22);

    color:#fff;

    font-size:22px;

    transition:.35s;

}

.category-card:hover .category-icon{

    transform:scale(1.08);

}

/*==================================================
    TITLE
==================================================*/

.category-card h3{

    font-size:18px;

    font-weight:700;

    color:#111827;

    margin-bottom:8px;

}

/*==================================================
    DESCRIPTION
==================================================*/

.category-card p{

    font-size:13px;

    color:#6b7280;

    line-height:1.5;

    margin-bottom:15px;

}

/*==================================================
    IMAGE
==================================================*/

.category-card img{

    width:100%;

    height:95px;

    object-fit:cover;

    border-radius:12px;

    transition:.35s;

}

.category-card:hover img{

    transform:scale(1.05);

}

/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:1400px){

    .category-grid{

        grid-template-columns:repeat(3,1fr);

    }

}

@media(max-width:992px){

    .category-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .categories-section{

        padding:60px 0;

    }

    .category-grid{

        grid-template-columns:1fr;

        gap:20px;

    }

}

/*==================================================
    END OF CATEGORIES
==================================================*/

/*==================================================
    FEATURED ATTRACTIONS SECTION
==================================================*/

.featured-section{

    padding:55px 0 75px;

    background:#f7f8fc;

}

/*==================================================
    FEATURED WRAPPER
==================================================*/

.featured-wrapper{

    width:94%;
    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:320px 1fr;

    gap:45px;

    align-items:flex-start;

}

/*==================================================
    LEFT CONTENT
==================================================*/

.featured-left{

    padding-top:0;

}

.section-tag{

    display:inline-block;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    color:var(--secondary);

    text-transform:uppercase;

    margin-bottom:14px;

}

.featured-left h2{

    font-size:42px;

    line-height:1.05;

    font-weight:800;

    color:#111827;

    margin-bottom:16px;

}

.featured-left h2 span{

    display:block;

    color:var(--secondary);

}

.featured-left p{

    font-size:15px;

    line-height:1.7;

    color:#6b7280;

    margin-bottom:24px;

}

/*==================================================
    VIEW BUTTON
==================================================*/

.btn-view-all{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:50px;

    background:#081223;

    color:#fff;

    font-size:13px;

    font-weight:600;

    transition:.35s;

}

.btn-view-all:hover{

    color:#fff;

    background:linear-gradient(90deg,#FF2E92,#FF9A22);

    transform:translateY(-3px);

}

/*==================================================
    CARD GRID
==================================================*/

.featured-cards{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:16px;

}

/*==================================================
    CARD
==================================================*/

.featured-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 22px rgba(0,0,0,.08);

    transition:.35s;

    cursor:pointer;

}

.featured-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 40px rgba(0,0,0,.14);

}

/*==================================================
    IMAGE
==================================================*/

.featured-image{

    position:relative;

    overflow:hidden;

}

.featured-image img{

    width:100%;

    height:150px;

    object-fit:cover;

    transition:.45s;

}

.featured-card:hover img{

    transform:scale(1.08);

}

/*==================================================
    WISHLIST
==================================================*/

.wishlist{

    position:absolute;

    top:10px;

    right:10px;

    width:36px;

    height:36px;

    border-radius:50%;

    background:rgba(255,255,255,.95);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#666;

    font-size:14px;

    transition:.35s;

}

.featured-card:hover .wishlist{

    background:var(--secondary);

    color:#fff;

}

/*==================================================
    CARD CONTENT
==================================================*/

.featured-content{

    padding:16px;

}

.featured-content h3{

    font-size:18px;

    font-weight:700;

    color:#111827;

    line-height:1.3;

    margin-bottom:12px;

}

/*==================================================
    META
==================================================*/

.featured-meta{

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:12px;

    color:#6b7280;

}

.featured-meta span{

    display:flex;

    align-items:center;

    gap:6px;

}

.featured-meta i{

    color:var(--primary);

}

/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:1400px){

    .featured-wrapper{

        grid-template-columns:230px 1fr;

    }

    .featured-cards{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:991px){

    .featured-wrapper{

        grid-template-columns:1fr;

    }

    .featured-left{

        text-align:center;

        margin-bottom:25px;

    }

    .featured-left h2{

        font-size:38px;

    }

    .featured-left h2 span{

        display:inline;

    }

}

@media(max-width:768px){

    .featured-section{

        padding:60px 0;

    }

    .featured-cards{

        grid-template-columns:1fr;

    }

    .featured-image img{

        height:210px;

    }

}

/*==================================================
   END OF ATTRACTION LIST
==================================================*/
/*==================================================
    EVENTS & PARTIES SECTION
==================================================*/

.events-section{

    padding:90px 0;

    background:#ffffff;

}

/*==================================================
    SECTION HEADER
==================================================*/

.events-header{

    width:92%;

    max-width:760px;

    margin:0 auto 55px;

    text-align:center;

}

.events-header .section-tag{

    display:inline-block;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--secondary);

    margin-bottom:15px;

}

.events-header h2{

    font-size:50px;

    font-weight:800;

    line-height:1.05;

    color:#101828;

    margin-bottom:18px;

}

.events-header h2 span{

    color:var(--secondary);

}

.events-header p{

    font-size:16px;

    color:#6b7280;

    line-height:1.7;

    max-width:700px;

    margin:auto;

}

/*==================================================
    EVENTS GRID
==================================================*/

.events-grid{

    width:96%;

    max-width:1500px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}

/*==================================================
    EVENT CARD
==================================================*/

.event-card{

    background:#fff;

    border-radius:22px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.event-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 55px rgba(0,0,0,.15);

}

/*==================================================
    IMAGE
==================================================*/

.event-image{

    position:relative;

    overflow:hidden;

}

.event-image img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.45s;

}

.event-card:hover .event-image img{

    transform:scale(1.08);

}

/*==================================================
    ICON
==================================================*/

.event-icon{

    position:absolute;

    bottom:-22px;

    left:20px;

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#FF2E92,#FF9A22);

    color:#fff;

    font-size:20px;

    box-shadow:0 10px 25px rgba(255,120,0,.35);

}

/*==================================================
    CONTENT
==================================================*/

.event-content{

    padding:34px 22px 22px;

}

.event-content h3{

    font-size:24px;

    font-weight:700;

    color:#101828;

    margin-bottom:10px;

}

.event-content p{

    font-size:14px;

    color:#6b7280;

    line-height:1.6;

    margin-bottom:18px;

    min-height:46px;

}

.event-content a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-size:14px;

    font-weight:700;

    color:var(--primary);

    transition:.3s;

}

.event-content a:hover{

    gap:12px;

}

/*==================================================
    BUTTON
==================================================*/

.events-button{

    text-align:center;

    margin-top:50px;

}

.btn-event-book{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 34px;

    border-radius:60px;

    background:linear-gradient(90deg,#FF2E92,#FF9A22);

    color:#fff;

    font-size:14px;

    font-weight:700;

    transition:.35s;

}

.btn-event-book:hover{

    color:#fff;

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(255,120,0,.35);

}

/*==================================================
    RESPONSIVE
==================================================*/

@media(max-width:1400px){

    .events-grid{

        grid-template-columns:repeat(2,1fr);

        max-width:950px;

    }

}

@media(max-width:768px){

    .events-section{

        padding:70px 0;

    }

    .events-header h2{

        font-size:38px;

    }

    .events-grid{

        grid-template-columns:1fr;

        width:92%;

    }

    .event-image img{

        height:250px;

    }

    .event-content{

        padding:30px 20px 20px;

    }

}

/*==================================================
    EVENTS & PARTIES SECTION END
==================================================*/

/*=========================================================
        NOMAD PARK
        OFFERS & PROMOTIONS
        PART 1
=========================================================*/

/*=========================
SECTION
=========================*/

.offers-section{

    position:relative;

    padding:80px 0;

    background:#070707;

    overflow:hidden;

}

.offers-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    top:-220px;

    left:-220px;

    border-radius:50%;

    background:rgba(255,196,0,.05);

    filter:blur(120px);

}

.offers-section::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    bottom:-220px;

    right:-220px;

    border-radius:50%;

    background:rgba(255,196,0,.04);

    filter:blur(120px);

}

.offers-section .container{

    width:92%;

    max-width:1500px;

    margin:auto;

    position:relative;

    z-index:2;

}


/*=========================
MAIN LAYOUT
=========================*/

.offers-layout{

    display:grid;

    grid-template-columns:72% 28%;

    gap:45px;

    align-items:start;

}



/*=========================
LEFT SIDE
=========================*/

.offers-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

}



/*=========================
RIGHT PANEL
=========================*/

.offers-left{

    position:sticky;

    top:120px;

    background:#111;

    border:1px solid rgba(255,255,255,.06);

    border-radius:22px;

    padding:40px;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

}



/*=========================
SECTION TAG
=========================*/

.offers-left .section-tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:40px;

    background:rgba(255,196,0,.10);

    color:#FFC400;

    font-size:12px;

    letter-spacing:2px;

    text-transform:uppercase;

    font-weight:700;

    margin-bottom:18px;

}



/*=========================
TITLE
=========================*/

.offers-left h2{

    color:#FFF;

    font-size:44px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:20px;

}

.offers-left h2 span{

    color:#FFC400;

}



/*=========================
DESCRIPTION
=========================*/

.offers-left p{

    color:#BDBDBD;

    font-size:16px;

    line-height:1.8;

    margin-bottom:35px;

}



/*=========================
MENU
=========================*/

.offer-menu{

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-bottom:35px;

}



.offer-menu a{

    display:flex;

    align-items:center;

    gap:14px;

    text-decoration:none;

    color:#DDD;

    padding:14px 18px;

    border-radius:14px;

    border:1px solid #262626;

    background:#161616;

    transition:.35s;

    font-size:16px;

    font-weight:600;

}



.offer-menu a i{

    width:38px;

    height:38px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#232323;

    color:#FFC400;

    transition:.35s;

}



.offer-menu a:hover{

    background:#FFC400;

    color:#000;

    transform:translateX(8px);

}



.offer-menu a:hover i{

    background:#000;

    color:#FFC400;

}



.offer-menu a.active{

    background:#FFC400;

    color:#000;

    border-color:#FFC400;

}



.offer-menu a.active i{

    background:#000;

    color:#FFC400;

}



/*=========================
VIEW ALL BUTTON
=========================*/

.view-all-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    background:#FFC400;

    color:#000;

    padding:16px 28px;

    border-radius:50px;

    font-weight:700;

    transition:.35s;

}



.view-all-btn:hover{

    background:#FFF;

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(255,255,255,.15);

}



/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.offers-layout{

grid-template-columns:1fr;

}

.offers-left{

position:relative;

top:0;

order:-1;

}

}



@media(max-width:992px){

.offers-right{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:768px){

.offers-section{

padding:60px 0;

}

.offers-left{

padding:30px;

}

.offers-left h2{

font-size:34px;

}

.offers-right{

grid-template-columns:1fr;

}

}



@media(max-width:480px){

.offers-left{

padding:22px;

}

.offers-left h2{

font-size:28px;

}

.offer-menu a{

padding:12px 14px;

font-size:14px;

}

}

/*=========================================================
        OFFER CARDS
=========================================================*/

.offer-big-card{

    position:relative;

    height:360px;

    border-radius:24px;

    overflow:hidden;

    cursor:pointer;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    transition:all .4s ease;

    box-shadow:0 15px 40px rgba(0,0,0,.30);

}

.offer-big-card:hover{

    transform:translateY(-8px);

    border-color:#FFC400;

    box-shadow:0 30px 70px rgba(255,196,0,.25);

}



/*=========================
IMAGE
=========================*/

.offer-big-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:transform .7s ease;

}

.offer-big-card:hover img{

    transform:scale(1.08);

}



/*=========================
OVERLAY
=========================*/

.offer-content{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:28px;

    background:linear-gradient(

        transparent,

        rgba(0,0,0,.92)

    );

}



/*=========================
BADGE
=========================*/

.offer-badge{

    display:inline-block;

    padding:8px 18px;

    background:#FFC400;

    color:#000;

    border-radius:30px;

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:14px;

}



/*=========================
TITLE
=========================*/

.offer-content h3{

    color:#FFF;

    font-size:28px;

    font-weight:800;

    margin-bottom:10px;

}



/*=========================
DESCRIPTION
=========================*/

.offer-content p{

    color:#D0D0D0;

    font-size:15px;

    margin-bottom:22px;

    line-height:1.7;

}



/*=========================
PURCHASE BUTTON
=========================*/

.purchase-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:13px 28px;

    background:#FFC400;

    color:#000;

    text-decoration:none;

    font-weight:700;

    border-radius:40px;

    transition:.35s;

}

.purchase-btn:hover{

    background:#FFF;

    color:#000;

}



/*=========================
FEATURED CARD
=========================*/

.offer-big-card.featured{

    border:2px solid #FFC400;

}

.offer-big-card.featured::before{

    content:"FEATURED";

    position:absolute;

    top:18px;

    left:18px;

    background:#FFC400;

    color:#000;

    padding:8px 16px;

    border-radius:30px;

    font-size:11px;

    font-weight:700;

    z-index:10;

}



/*=========================
HOVER ANIMATION
=========================*/

.offer-big-card:hover .offer-content{

    padding-bottom:38px;

}

.offer-big-card:hover .purchase-btn{

    transform:translateY(-3px);

}



/*=========================
RESPONSIVE
=========================*/

@media(max-width:1400px){

.offer-big-card{

height:330px;

}

}

@media(max-width:1200px){

.offers-right{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.offer-big-card{

height:310px;

}

.offer-content h3{

font-size:24px;

}

}

@media(max-width:768px){

.offers-right{

grid-template-columns:1fr;

}

.offer-big-card{

height:320px;

}

.offer-content{

padding:22px;

}

.offer-content h3{

font-size:22px;

}

.offer-content p{

font-size:14px;

}

.purchase-btn{

width:100%;

}

}

@media(max-width:480px){

.offer-big-card{

height:280px;

}

.offer-content{

padding:18px;

}

.offer-content h3{

font-size:20px;

}

.offer-content p{

display:none;

}

}

/*=========================
END OF OFFERS CSS 
=========================*/
/*=========================================================
        NOMAD PARK
        FOOD & DRINKS V2
        PART 1
=========================================================*/

/*=========================
SECTION
=========================*/

.food-section{

    position:relative;

    overflow:hidden;

    padding:65px 0;

    background:
    linear-gradient(
        180deg,
        #081320 0%,
        #0C2138 50%,
        #081320 100%
    );

}


/*=========================
BACKGROUND LIGHTS
=========================*/

.food-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:-180px;

    top:-180px;

    border-radius:50%;

    background:rgba(255,196,0,.04);

    filter:blur(120px);

}

.food-section::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    right:-180px;

    bottom:-180px;

    border-radius:50%;

    background:rgba(255,196,0,.03);

    filter:blur(110px);

}


/*=========================
CONTAINER
=========================*/

.food-section .container{

    width:92%;

    max-width:1450px;

    margin:auto;

    position:relative;

    z-index:5;

}


/*=========================
HEADER
=========================*/

.food-header{

    text-align:center;

    margin-bottom:35px;

}


/*=========================
TAG
=========================*/

.food-header .section-tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:40px;

    border:1px solid rgba(255,196,0,.45);

    background:rgba(255,196,0,.06);

    color:#FFC400;

    font-size:11px;

    letter-spacing:3px;

    font-weight:700;

    margin-bottom:15px;

}


/*=========================
TITLE
=========================*/

.food-header h2{

    color:#FFF;

    font-size:52px;

    font-weight:800;

    line-height:1.1;

    margin-bottom:15px;

}

.food-header h2 span{

    color:#FFC400;

}


/*=========================
DESCRIPTION
=========================*/

.food-header p{

    max-width:650px;

    margin:auto;

    color:#C9D5E1;

    font-size:16px;

    line-height:1.7;

}


/*=========================
GRID
=========================*/

.food-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}


/*=========================
CARD
=========================*/

.food-card{

    position:relative;

    height:180px;

    overflow:hidden;

    border-radius:18px;

    background:#16263A;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    cursor:pointer;

}


/*=========================
IMAGE
=========================*/

.food-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}


/*=========================
HOVER
=========================*/

.food-card:hover{

    transform:translateY(-6px);

    border-color:#FFC400;

    box-shadow:

    0 15px 35px rgba(0,0,0,.30),

    0 0 18px rgba(255,196,0,.15);

}

.food-card:hover img{

    transform:scale(1.06);

}


/*=========================
BUTTON
=========================*/

.food-button{

    text-align:center;

    margin-top:35px;

}

.menu-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:45px;

    background:#FFC400;

    color:#000;

    font-size:16px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.menu-btn:hover{

    background:#FFF;

    transform:translateY(-3px);

}

/*=========================================================
        NOMAD PARK
        FOOD & DRINKS V2
        PART 2
=========================================================*/


/*=========================================================
OVERLAY
=========================================================*/

.food-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:14px 16px;

    background:linear-gradient(

        180deg,

        transparent 0%,

        rgba(5,16,30,.82) 55%,

        rgba(5,16,30,.96) 100%

    );

    transition:.35s;

}


/*=========================================================
TITLE
=========================================================*/

.food-overlay h3{

    color:#FFF;

    font-size:20px;

    font-weight:700;

    margin:0;

    transition:.35s;

}


/*=========================================================
SUBTITLE
=========================================================*/

.food-overlay p{

    margin-top:4px;

    color:#D5DDE7;

    font-size:12px;

    opacity:0;

    transition:.35s;

}


/*=========================================================
VIEW MENU
=========================================================*/

.food-overlay a{

    display:inline-flex;

    align-items:center;

    gap:6px;

    margin-top:8px;

    color:#FFC400;

    font-size:13px;

    font-weight:700;

    text-decoration:none;

    opacity:0;

    transform:translateY(10px);

    transition:.35s;

}


.food-card:hover .food-overlay a{

    opacity:1;

    transform:translateY(0);

}


.food-card:hover .food-overlay p{

    opacity:1;

}


/*=========================================================
ICON
=========================================================*/

.food-icon{

    position:absolute;

    left:16px;

    bottom:54px;

    width:36px;

    height:36px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:rgba(255,196,0,.12);

    border:1px solid rgba(255,196,0,.35);

    backdrop-filter:blur(8px);

    z-index:5;

}

.food-icon i{

    color:#FFC400;

    font-size:17px;

}


/*=========================================================
HOVER
=========================================================*/

.food-card:hover{

    transform:translateY(-5px);

}

.food-card:hover img{

    transform:scale(1.05);

}

.food-card:hover h3{

    color:#FFC400;

}

.food-card:hover .food-overlay{

    padding-bottom:18px;

}


/*=========================================================
TOP BAR
=========================================================*/

.food-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:3px;

    background:#FFC400;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

    z-index:10;

}

.food-card:hover::before{

    transform:scaleX(1);

}


/*=========================================================
SHINE
=========================================================*/

.food-card::after{

    content:"";

    position:absolute;

    top:0;

    left:-140%;

    width:55%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.18),

        transparent

    );

    transform:skewX(-25deg);

    transition:.8s;

}

.food-card:hover::after{

    left:140%;

}


/*=========================================================
BUTTON
=========================================================*/

.menu-btn{

    box-shadow:

    0 10px 30px rgba(255,196,0,.20);

}

.menu-btn:hover{

    box-shadow:

    0 15px 35px rgba(255,255,255,.12);

}


/*=========================================================
FADE ANIMATION
=========================================================*/

.food-card{

    animation:foodFade .6s ease;

}

@keyframes foodFade{

from{

opacity:0;

transform:translateY(20px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/*=========================================================
            NOMAD PARK
            GALLERY
            PART 1
=========================================================*/


/*=========================================================
SECTION
=========================================================*/

.gallery-section{

    position:relative;

    padding:80px 0;

    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #EEF6FF 0%,
        #F8FBFF 50%,
        #EEF6FF 100%
    );

}


/*=========================================================
BACKGROUND EFFECTS
=========================================================*/

.gallery-section::before{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    left:-180px;

    top:-180px;

    border-radius:50%;

    background:rgba(0,123,255,.05);

    filter:blur(120px);

}

.gallery-section::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    right:-180px;

    bottom:-180px;

    border-radius:50%;

    background:rgba(255,196,0,.08);

    filter:blur(120px);

}


/*=========================================================
CONTAINER
=========================================================*/

.gallery-section .container{

    width:92%;

    max-width:1450px;

    margin:auto;

    position:relative;

    z-index:2;

}


/*=========================================================
HEADER
=========================================================*/

.gallery-header{

    text-align:center;

    margin-bottom:45px;

}


.gallery-header .section-tag{

    display:inline-block;

    padding:8px 22px;

    border-radius:50px;

    background:#EAF3FF;

    color:#0066CC;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}


.gallery-header h2{

    font-size:56px;

    font-weight:800;

    color:#0D223A;

    margin-bottom:18px;

}


.gallery-header h2 span{

    color:#FFC400;

}


.gallery-header p{

    max-width:720px;

    margin:auto;

    font-size:17px;

    color:#65758A;

    line-height:1.8;

}


/*=========================================================
STATISTICS
=========================================================*/

.gallery-stats{

    display:flex;

    justify-content:center;

    gap:25px;

    margin-bottom:40px;

    flex-wrap:wrap;

}


.gallery-stat{

    display:flex;

    align-items:center;

    gap:15px;

    background:#FFF;

    padding:18px 28px;

    border-radius:18px;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}


.stat-icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#FFF8E1;

    display:flex;

    justify-content:center;

    align-items:center;

}


.stat-icon i{

    color:#FFC400;

    font-size:22px;

}


.gallery-stat h3{

    margin:0;

    font-size:24px;

    color:#0D223A;

}


.gallery-stat span{

    color:#7B8DA2;

    font-size:14px;

}


/*=========================================================
FILTER
=========================================================*/

.gallery-filter{

    display:flex;

    justify-content:center;

    gap:14px;

    flex-wrap:wrap;

    margin-bottom:45px;

}


.filter-btn{

    border:none;

    background:#FFF;

    padding:14px 22px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    color:#334155;

    cursor:pointer;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

}


.filter-btn i{

    margin-right:8px;

}


.filter-btn:hover{

    background:#FFC400;

    color:#000;

}


.filter-btn.active{

    background:#FFC400;

    color:#000;

}


/*=========================================================
GRID
=========================================================*/

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

}
/*=========================================================
        NOMAD PARK
        GALLERY
        PART 2
=========================================================*/


/*=========================================================
GALLERY ITEM
=========================================================*/

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    background:#FFF;

    cursor:pointer;

    transition:.4s;

    box-shadow:0 15px 35px rgba(15,23,42,.08);

}


/*=========================================================
IMAGE
=========================================================*/

.gallery-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:transform .8s;

}


/*=========================================================
HEIGHTS
=========================================================*/

.gallery-item{

    height:240px;

}

.gallery-item.large{

    grid-column:span 2;

    height:500px;

}

.gallery-item.wide{

    grid-column:span 2;

    height:240px;

}


/*=========================================================
OVERLAY
=========================================================*/

.gallery-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:25px;

    background:linear-gradient(

        transparent 25%,

        rgba(7,18,33,.88) 100%

    );

    transition:.35s;

}


/*=========================================================
CATEGORY
=========================================================*/

.gallery-overlay span{

    display:inline-block;

    width:max-content;

    padding:6px 14px;

    border-radius:30px;

    background:rgba(255,196,0,.18);

    color:#FFC400;

    font-size:12px;

    font-weight:700;

    margin-bottom:12px;

}


/*=========================================================
TITLE
=========================================================*/

.gallery-overlay h3{

    color:#FFF;

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;

}


/*=========================================================
BUTTON
=========================================================*/

.gallery-overlay a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#FFF;

    text-decoration:none;

    font-weight:600;

    opacity:0;

    transform:translateY(20px);

    transition:.35s;

}

.gallery-overlay a i{

    color:#FFC400;

}


/*=========================================================
HOVER
=========================================================*/

.gallery-item:hover{

    transform:translateY(-8px);

    box-shadow:

    0 30px 60px rgba(0,0,0,.18);

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-item:hover .gallery-overlay{

    background:linear-gradient(

        transparent 10%,

        rgba(4,15,35,.92) 100%

    );

}

.gallery-item:hover a{

    opacity:1;

    transform:translateY(0);

}

.gallery-item:hover h3{

    color:#FFC400;

}


/*=========================================================
TOP BORDER
=========================================================*/

.gallery-item::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#FFC400;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

    z-index:10;

}

.gallery-item:hover::before{

    transform:scaleX(1);

}


/*=========================================================
SHINE EFFECT
=========================================================*/

.gallery-item::after{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:60%;

    height:100%;

    background:linear-gradient(

        90deg,

        transparent,

        rgba(255,255,255,.25),

        transparent

    );

    transform:skewX(-25deg);

    transition:.8s;

}

.gallery-item:hover::after{

    left:140%;

}


/*=========================================================
FOOTER
=========================================================*/

.gallery-footer{

    text-align:center;

    margin-top:45px;

}

.gallery-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 36px;

    border-radius:60px;

    background:#0D223A;

    color:#FFF;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.gallery-btn:hover{

    background:#FFC400;

    color:#000;

}
/*=========================================================
        NOMAD PARK
        GALLERY
        PART 3
=========================================================*/


/*=========================================================
FADE IN ANIMATION
=========================================================*/

.gallery-item{

    animation:galleryFade .7s ease;

}

@keyframes galleryFade{

    from{

        opacity:0;

        transform:translateY(30px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}


/*=========================================================
STAGGER ANIMATION
=========================================================*/

.gallery-item:nth-child(1){animation-delay:.05s;}
.gallery-item:nth-child(2){animation-delay:.10s;}
.gallery-item:nth-child(3){animation-delay:.15s;}
.gallery-item:nth-child(4){animation-delay:.20s;}
.gallery-item:nth-child(5){animation-delay:.25s;}
.gallery-item:nth-child(6){animation-delay:.30s;}
.gallery-item:nth-child(7){animation-delay:.35s;}
.gallery-item:nth-child(8){animation-delay:.40s;}
.gallery-item:nth-child(9){animation-delay:.45s;}
.gallery-item:nth-child(10){animation-delay:.50s;}
.gallery-item:nth-child(11){animation-delay:.55s;}
.gallery-item:nth-child(12){animation-delay:.60s;}


/*=========================================================
SMOOTH FILTER ANIMATION
=========================================================*/

.gallery-item{

    transition:

    transform .4s,

    opacity .35s,

    box-shadow .35s;

}

.gallery-item.hide{

    opacity:0;

    transform:scale(.92);

    pointer-events:none;

}

.gallery-item.show{

    opacity:1;

    transform:scale(1);

}


/*=========================================================
BUTTON SHADOW
=========================================================*/

.gallery-btn{

    box-shadow:

    0 12px 30px rgba(13,34,58,.20);

}

.gallery-btn:hover{

    box-shadow:

    0 18px 45px rgba(255,196,0,.25);

}


/*=========================================================
SCROLL ANIMATION READY
=========================================================*/

.gallery-header,

.gallery-filter,

.gallery-stats,

.gallery-item{

    will-change:transform;

}


/*=========================================================
IMAGE OPTIMIZATION
=========================================================*/

.gallery-item img{

    will-change:transform;

}


/*=========================================================
TABLET
=========================================================*/

@media(max-width:1200px){

.gallery-grid{

grid-template-columns:repeat(3,1fr);

gap:16px;

}

.gallery-item.large{

grid-column:span 2;

height:420px;

}

.gallery-item.wide{

grid-column:span 2;

}

.gallery-header h2{

font-size:48px;

}

}


/*=========================================================
SMALL TABLET
=========================================================*/

@media(max-width:992px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.gallery-item{

height:220px;

}

.gallery-item.large{

grid-column:span 2;

height:360px;

}

.gallery-item.wide{

grid-column:span 2;

height:220px;

}

.gallery-stats{

gap:18px;

}

.gallery-stat{

padding:16px 20px;

}

.gallery-header h2{

font-size:42px;

}

.gallery-header p{

font-size:16px;

}

}


/*=========================================================
MOBILE
=========================================================*/

@media(max-width:768px){

.gallery-section{

padding:60px 0;

}

.gallery-grid{

grid-template-columns:1fr;

gap:18px;

}

.gallery-item,

.gallery-item.large,

.gallery-item.wide{

grid-column:span 1;

height:260px;

}

.gallery-header{

margin-bottom:30px;

}

.gallery-header h2{

font-size:34px;

}

.gallery-header p{

font-size:15px;

padding:0 12px;

}

.gallery-filter{

gap:10px;

}

.filter-btn{

padding:12px 18px;

font-size:14px;

}

.gallery-overlay{

padding:20px;

}

.gallery-overlay h3{

font-size:20px;

}

.gallery-overlay a{

opacity:1;

transform:none;

}

.gallery-stat{

width:100%;

justify-content:center;

}

}


/*=========================================================
SMALL MOBILE
=========================================================*/

@media(max-width:480px){

.gallery-header h2{

font-size:30px;

}

.gallery-header .section-tag{

font-size:11px;

}

.gallery-item{

height:220px;

}

.gallery-overlay{

padding:18px;

}

.gallery-overlay h3{

font-size:18px;

}

.gallery-overlay span{

font-size:11px;

}

.gallery-btn{

width:100%;

justify-content:center;

}

}


/*=========================================================
REDUCE MOTION
=========================================================*/

@media(prefers-reduced-motion:reduce){

.gallery-item,

.gallery-item img,

.gallery-btn,

.filter-btn{

animation:none !important;

transition:none !important;

}

}


/*=========================================================
END OF GALLERY CSS
=========================================================*/

/*=========================================================
            CONTACT SECTION V2
            PART 1
=========================================================*/


/*=========================================================
SECTION
=========================================================*/

.contact-section{

    position:relative;

    overflow:hidden;

    padding:60px 0;

    background:
    linear-gradient(
        180deg,
        #07111D 0%,
        #0B1E33 45%,
        #07111D 100%
    );

}


/*=========================================================
BACKGROUND GLOW
=========================================================*/

.contact-section::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:-180px;

    top:-180px;

    border-radius:50%;

    background:rgba(255,196,0,.04);

    filter:blur(120px);

}

.contact-section::after{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    right:-180px;

    bottom:-180px;

    border-radius:50%;

    background:rgba(0,120,255,.06);

    filter:blur(120px);

}


/*=========================================================
CONTAINER
=========================================================*/

.contact-section .container{

    width:90%;

    max-width:1320px;

    margin:auto;

    position:relative;

    z-index:2;

}


/*=========================================================
MAIN GRID
=========================================================*/

.contact-wrapper{

    display:grid;

    grid-template-columns:360px 1fr;

    gap:28px;

    align-items:start;

}


/*=========================================================
LEFT PANEL
=========================================================*/

.contact-left{

    position:sticky;

    top:100px;

}


/*=========================================================
TAG
=========================================================*/

.contact-left .section-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:40px;

    background:rgba(255,196,0,.08);

    border:1px solid rgba(255,196,0,.35);

    color:#FFC400;

    font-size:11px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:18px;

}


/*=========================================================
TITLE
=========================================================*/

.contact-left h2{

    color:#FFF;

    font-size:44px;

    line-height:1.1;

    font-weight:800;

    margin-bottom:18px;

}

.contact-left h2 span{

    color:#FFC400;

}


/*=========================================================
DESCRIPTION
=========================================================*/

.contact-left p{

    color:#B9C7D6;

    font-size:16px;

    line-height:1.8;

    margin-bottom:28px;

}


/*=========================================================
CONTACT CARD
=========================================================*/

.contact-card{

    display:flex;

    align-items:center;

    gap:14px;

    padding:16px 18px;

    margin-bottom:14px;

    border-radius:18px;

    background:#1A2A3F;

    border:1px solid rgba(255,255,255,.06);

    transition:.35s;

}


.contact-card:hover{

    transform:translateX(5px);

    border-color:#FFC400;

    box-shadow:

    0 15px 30px rgba(0,0,0,.28);

}


/*=========================================================
ICON
=========================================================*/

.contact-icon{

    width:56px;

    height:56px;

    border-radius:16px;

    background:#FFC400;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

}

.contact-icon i{

    color:#081320;

    font-size:20px;

}


/*=========================================================
INFO
=========================================================*/

.contact-info{

    flex:1;

}

.contact-info h4{

    color:#FFF;

    font-size:17px;

    margin-bottom:5px;

}

.contact-info p{

    margin:0;

    color:#C8D3DF;

    font-size:14px;

    line-height:1.6;

}


/*=========================================================
ARROW
=========================================================*/

.contact-arrow{

    width:38px;

    height:38px;

    border-radius:50%;

    background:#223449;

    display:flex;

    justify-content:center;

    align-items:center;

    transition:.35s;

}

.contact-arrow i{

    color:#FFC400;

    font-size:13px;

}

.contact-card:hover .contact-arrow{

    background:#FFC400;

}

.contact-card:hover .contact-arrow i{

    color:#081320;

}


/*=========================================================
RIGHT PANEL
=========================================================*/

.contact-right{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

/*=========================================================
            CONTACT SECTION V2
            PART 2
=========================================================*/


/*=========================================================
MAP
=========================================================*/

.contact-map{

    position:relative;

    grid-column:1 / span 2;

    height:330px;

    overflow:hidden;

    border-radius:20px;

    background:#14263D;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 18px 40px rgba(0,0,0,.28);

}

.contact-map iframe{

    width:100%;

    height:100%;

    border:0;

}


/*=========================================================
LOCATION CARD
=========================================================*/

.map-info-card{

    position:absolute;

    left:22px;

    top:22px;

    width:340px;

    display:flex;

    gap:15px;

    padding:18px;

    border-radius:20px;

    background:rgba(8,19,32,.95);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

}

.map-info-card img{

    width:82px;

    height:82px;

    object-fit:cover;

    border-radius:16px;

}

.map-info{

    flex:1;

}

.map-info h3{

    color:#FFF;

    font-size:28px;

    margin-bottom:8px;

}

.verified{

    color:#39D353;

    font-size:14px;

}

.rating{

    display:flex;

    align-items:center;

    gap:6px;

    margin-bottom:10px;

}

.rating span{

    color:#FFC400;

    font-size:14px;

}

.rating strong{

    color:#FFF;

}

.rating small{

    color:#AEB9C7;

}

.map-info p{

    color:#D4DEE8;

    font-size:14px;

    line-height:1.6;

    margin-bottom:10px;

}


/*=========================================================
STATUS
=========================================================*/

.status{

    display:inline-flex;

    align-items:center;

    gap:6px;

    color:#39D353;

    font-size:13px;

    font-weight:600;

}

.status i{

    font-size:9px;

}


/*=========================================================
BUTTON
=========================================================*/

.direction-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:15px;

    padding:11px 20px;

    border-radius:40px;

    background:#FFC400;

    color:#081320;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.direction-btn:hover{

    background:#FFF;

}


/*=========================================================
BOTTOM GRID
=========================================================*/

/*=========================================================
BOTTOM CONTACT
=========================================================*/
/*=========================================================
BOTTOM CONTACT
=========================================================*/

.bottom-contact{

    grid-column:1 / span 2;

    display:grid;

    grid-template-columns:280px 1fr;

    gap:20px;

    align-items:stretch;

    margin-top:20px;

}

/*=========================================================
OPENING HOURS
=========================================================*/

.opening-hours{

    padding:22px;

    border-radius:20px;

    background:#1A2A3F;

    border:1px solid rgba(255,255,255,.06);

    display:flex;

    flex-direction:column;

}

.hours-header{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:16px;

}

.hours-header i{

    width:44px;

    height:44px;

    border-radius:50%;

    background:#FFC400;

    color:#081320;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:17px;

}

.hours-header h3{

    color:#FFF;

    font-size:20px;

    margin:0;

}

.opening-hours ul{

    margin:0;

    padding:0;

    list-style:none;

}

.opening-hours li{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:8px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

}

.opening-hours li:last-child{

    border:none;

}

.opening-hours span{

    color:#D2DCE7;

    font-size:13px;

}

.opening-hours strong{

    color:#FFF;

    font-size:13px;

    font-weight:600;

}

.opening-hours .highlight span,

.opening-hours .highlight strong{

    color:#FFC400;

}

/*=========================================================
QUICK ACTIONS
=========================================================*/

.quick-actions{

    padding:24px;

    border-radius:20px;

    background:#1A2A3F;

    border:1px solid rgba(255,255,255,.06);

}

.quick-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:18px;

}

.quick-header h3{

    color:#FFF;

    font-size:22px;

    margin:0;

}

.quick-header i{

    color:#FFC400;

}


/*=========================================================
ACTION GRID
=========================================================*/

.quick-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:14px;

}

/*=========================================================
            CONTACT SECTION V2
            PART 3
=========================================================*/


/*=========================================================
QUICK HEADER
=========================================================*/

.quick-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.quick-title{

    display:flex;

    align-items:center;

    gap:12px;

}

.quick-title i{

    color:#FFC400;

    font-size:20px;

}

.quick-title h3{

    color:#FFF;

    font-size:22px;

    margin:0;

}


/*=========================================================
SOCIAL ICONS OLD
=========================================================*/

.quick-social{

    display:flex;

    align-items:center;

    gap:10px;

}

.quick-social a{

    width:38px;

    height:38px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#FFF;

    text-decoration:none;

    transition:.35s;

    font-size:16px;

}

.quick-social .facebook{

    background:#1877F2;

}

.quick-social .instagram{

    background:#E4405F;

}

.quick-social .tiktok{

    background:#000;

}

.quick-social .youtube{

    background:#FF0000;

}

.quick-social .snapchat{

    background:#FFFC00;

    color:#000;

}

.quick-social a:hover{

    transform:translateY(-4px) scale(1.08);

}


/*=========================================================
ACTION GRID
=========================================================*/

.quick-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:12px;

}


/*=========================================================
ACTION CARD
=========================================================*/

.quick-card{

    height:155px;

    border-radius:18px;

    text-decoration:none;

    color:#FFF;

    padding:18px;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.quick-card i:first-child{

    font-size:30px;

}

.quick-card h4{

    margin:10px 0 4px;

    font-size:18px;

}

.quick-card p{

    font-size:13px;

    color:#E8EEF5;

    line-height:1.5;

    margin:0;

}

.quick-card span{

    width:34px;

    height:34px;

    border-radius:50%;

    background:rgba(255,255,255,.20);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-left:auto;

}

.quick-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(0,0,0,.30);

}

.quick-card:hover span{

    background:#FFF;

    color:#081320;

}


/*=========================================================
CARD COLORS
=========================================================*/

.whatsapp{

    background:linear-gradient(135deg,#1FAF55,#25D366);

}

.call{

    background:linear-gradient(135deg,#0055DD,#1976FF);

}

.direction{

    background:linear-gradient(135deg,#6A1B9A,#8E44EC);

}

.booking{

    background:linear-gradient(135deg,#E68900,#FFB300);

}


/*=========================================================
            FOLLOW THE FUN
=========================================================*/

.quick-social{

    margin-top:22px;

    padding-top:18px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

}


/*=========================================================
TITLE
=========================================================*/

.quick-social-title{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-bottom:18px;

}

.quick-social-title i{

    color:#FFC400;

    font-size:18px;

}

.quick-social-title span{

    color:#FFF;

    font-size:18px;

    font-weight:700;

    letter-spacing:.5px;

}


/*=========================================================
SOCIAL ICONS
=========================================================*/

.quick-social-icons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:16px;

    flex-wrap:wrap;

}


/*=========================================================
ICON STYLE
=========================================================*/

.quick-social-icons a{

    width:52px;

    height:52px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#FFF;

    text-decoration:none;

    font-size:20px;

    transition:.35s ease;

    box-shadow:0 8px 20px rgba(0,0,0,.25);

}


/*=========================================================
COLORS
=========================================================*/

.quick-social-icons .facebook{

    background:#1877F2;

}

.quick-social-icons .instagram{

    background:linear-gradient(
        135deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );

}

.quick-social-icons .tiktok{

    background:#000;

}

.quick-social-icons .youtube{

    background:#FF0000;

}

.quick-social-icons .snapchat{

    background:#FFFC00;

    color:#000;

}


/*=========================================================
HOVER
=========================================================*/

.quick-social-icons a:hover{

    transform:translateY(-6px) scale(1.08);

    box-shadow:0 15px 30px rgba(255,196,0,.20);

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:768px){

.quick-social{

margin-top:18px;

padding-top:16px;

}

.quick-social-icons{

gap:12px;

}

.quick-social-icons a{

width:46px;

height:46px;

font-size:18px;

}

.quick-social-title span{

font-size:16px;

}

}

@media(max-width:480px){

.quick-social-icons a{

width:42px;

height:42px;

font-size:16px;

}

.quick-social-title{

margin-bottom:14px;

}

}

/*=========================================================
FOOTER
=========================================================*/

.contact-footer{

    margin-top:35px;

    padding-top:22px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.footer-left{

    display:flex;

    align-items:center;

    gap:15px;

}

.footer-left img{

    height:48px;

}

.footer-left p{

    color:#AEB9C7;

    font-size:14px;

    margin:0;

}

.footer-center{

    color:#94A3B8;

    font-size:13px;

}

.footer-right{

    display:flex;

    align-items:center;

    gap:14px;

}

.footer-right a{

    color:#FFC400;

    text-decoration:none;

    font-size:14px;

}

.footer-right a:hover{

    color:#FFF;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:1200px){

.bottom-contact{

grid-template-columns:1fr;

}

.quick-grid{

grid-template-columns:repeat(2,1fr);

}

.quick-social{

margin-top:15px;

}

.quick-header{

flex-direction:column;

align-items:flex-start;

gap:15px;

}

}


@media(max-width:768px){

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-left{

position:relative;

top:0;

}

.contact-map{

height:280px;

}

.map-info-card{

position:relative;

left:0;

top:0;

width:100%;

margin:15px;

}

.quick-grid{

grid-template-columns:1fr;

}

.quick-card{

height:140px;

}

.contact-footer{

flex-direction:column;

text-align:center;

}

.footer-left{

flex-direction:column;

}

}


@media(max-width:480px){

.contact-section{

padding:50px 0;

}

.contact-left h2{

font-size:34px;

}

.quick-social a{

width:34px;

height:34px;

font-size:14px;

}

.quick-card{

height:130px;

padding:16px;

}

.quick-card h4{

font-size:16px;

}

.quick-card p{

font-size:12px;

}

.footer-left img{

height:40px;

}

}

/*=========================================================
                    SIMPLE FOOTER
=========================================================*/

.footer{

    background:#07111D;

    border-top:1px solid rgba(255,255,255,.08);

    padding:45px 0 20px;

    text-align:center;

}


/*=========================================================
CONTAINER
=========================================================*/

.footer .container{

    width:90%;

    max-width:900px;

    margin:auto;

}


/*=========================================================
LOGO
=========================================================*/

.footer-logo{

    width:180px;

    max-width:100%;

    margin:0 auto 15px;

    display:block;

}

.footer-text{

    color:#BFC8D4;

    font-size:15px;

    line-height:1.7;

    margin-bottom:25px;

}


/*=========================================================
SOCIAL MEDIA
=========================================================*/

.footer-social{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:12px;

    margin-bottom:25px;

}

.footer-social a{

    width:44px;

    height:44px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#1A2A3F;

    color:#FFF;

    text-decoration:none;

    font-size:18px;

    transition:.35s;

}

.footer-social a:hover{

    background:#FFC400;

    color:#081320;

    transform:translateY(-4px);

}


/*=========================================================
MENU
=========================================================*/

.footer-links{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:25px;

}

.footer-links a{

    color:#D5DEE8;

    text-decoration:none;

    font-size:14px;

    font-weight:500;

    transition:.3s;

}

.footer-links a:hover{

    color:#FFC400;

}


/*=========================================================
BOTTOM
=========================================================*/

.footer-bottom{

    margin-top:15px;

    padding-top:18px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:12px;

    color:#97A8BB;

    font-size:13px;

}

.footer-bottom div{

    display:flex;

    align-items:center;

    gap:10px;

}

.footer-bottom a{

    color:#FFC400;

    text-decoration:none;

    transition:.3s;

}

.footer-bottom a:hover{

    color:#FFF;

}


/*=========================================================
RESPONSIVE
=========================================================*/

@media(max-width:768px){

.footer{

padding:40px 0 20px;

}

.footer .container{

max-width:95%;

}

.footer-logo{

width:150px;

}

.footer-text{

font-size:14px;

margin-bottom:20px;

}

.footer-social{

gap:10px;

margin-bottom:20px;

}

.footer-social a{

width:40px;

height:40px;

font-size:16px;

}

.footer-links{

gap:14px;

margin-bottom:20px;

}

.footer-links a{

font-size:13px;

}

.footer-bottom{

flex-direction:column;

text-align:center;

gap:10px;

}

.footer-bottom div{

justify-content:center;

}

}


/*=========================================================
SMALL MOBILE
=========================================================*/

@media(max-width:480px){

.footer-logo{

width:130px;

}

.footer-social a{

width:36px;

height:36px;

font-size:15px;

}

.footer-links{

gap:10px;

}

.footer-links a{

font-size:12px;

}

.footer-bottom{

font-size:12px;

}

}


/*=========================================================
END FOOTER
=========================================================*/


/*==========================================
MOBILE MENU CONTENT
==========================================*/

.mobile-menu-header{

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:16px 18px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

.mobile-menu-header img{

    height:32px;

}

.close-menu{

    width:38px;
    height:38px;

    border:none;

    border-radius:10px;

    background:#132236;

    color:#fff;

    cursor:pointer;

    transition:.3s;

}

.close-menu:hover{

    background:#FF9A22;

}

/*==============================
MENU LIST
==============================*/

.mobile-links{

    list-style:none;

    margin:0;

    padding:12px 18px 8px;

    /* IMPORTANT */
    flex:none;

}

.mobile-links li{

    margin:4px 0;

}

.mobile-links a{

    display:flex;

    align-items:center;

    height:42px;

    padding:0 14px;

    border-radius:12px;

    text-decoration:none;

    color:#fff;

    font-size:15px;

    font-weight:600;

    transition:.30s ease;

}

.mobile-links a:hover{

    background:rgba(255,154,34,.15);

    color:#FF9A22;

    transform:translateX(6px);

}

/*==============================
BOOK BUTTON
==============================*/

.mobile-book-btn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin:8px 18px 18px;

    height:48px;

    border-radius:12px;

    text-decoration:none;

    color:#fff;

    font-size:15px;

    font-weight:700;

    background:linear-gradient(135deg,#FF9A22,#FF6A00);

    box-shadow:0 8px 20px rgba(255,154,34,.25);

    transition:.30s ease;

}

.mobile-book-btn:hover{

    transform:translateY(-2px);

    box-shadow:0 12px 28px rgba(255,154,34,.35);

}