/*==================================
GROUND HERO
==================================*/

.ground-hero{

    height:350px;

    background:
            url("../images/ground-banner.jpg")
            center center/cover no-repeat;

    position:relative;
}

.ground-hero .hero-overlay{

    width:100%;
    height:100%;

    display:flex;
    align-items:center;

    background:
            linear-gradient(
                    rgba(2,19,45,.45),
                    rgba(2,19,45,.90)
            );
}

.hero-badge{

    display:inline-block;

    padding:10px 20px;

    border-radius:50px;

    background:
            rgba(37,99,235,.18);

    border:
            1px solid rgba(78,161,255,.25);

    color:#4ea1ff;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;
}

.ground-hero h1{

    margin-top:20px;

    color:#fff;

    font-size:62px;

    font-weight:800;
}

.ground-hero p{

    margin-top:15px;

    color:#d7e4ff;

    max-width:650px;

    font-size:18px;
}

/*==================================
SECTION
==================================*/

.ground-section{

    background:#02132d;

    padding:90px 0;
}

.container{

    max-width:1320px;

    margin:auto;

    padding:0 20px;
}

/*==================================
SEARCH
==================================*/

.ground-search{

    display:flex;

    gap:15px;

    margin-bottom:35px;

    flex-wrap:wrap;
}

.ground-search input{

    flex:1;

    height:60px;

    border:none;

    outline:none;

    border-radius:16px;

    padding:0 22px;

    background:
            rgba(255,255,255,.05);

    border:
            1px solid rgba(255,255,255,.08);

    color:#fff;
}

.ground-search input:focus{

    border-color:#2563eb;

    box-shadow:
            0 0 0 4px rgba(37,99,235,.15);
}

.ground-search button{

    padding:0 35px;

    border:none;

    border-radius:16px;

    color:#fff;

    cursor:pointer;

    font-weight:600;

    background:
            linear-gradient(
                    135deg,
                    #2563eb,
                    #06b6d4
            );

    transition:.35s;
}

.ground-search button:hover{

    transform:translateY(-3px);
}

/*==================================
FILTERS
==================================*/

.ground-filters{

    display:flex;

    gap:12px;

    flex-wrap:wrap;

    margin-bottom:45px;
}

.ground-filters button{

    padding:12px 22px;

    border:none;

    border-radius:40px;

    cursor:pointer;

    color:#fff;

    background:
            rgba(255,255,255,.05);

    transition:.3s;
}

.ground-filters button:hover{

    background:#2563eb;
}

.ground-filters .active{

    background:
            linear-gradient(
                    135deg,
                    #2563eb,
                    #06b6d4
            );
}

/*==================================
GRID
==================================*/

.ground-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(370px,1fr));

    gap:30px;
}

/*==================================
CARD
==================================*/

.ground-card{

    overflow:hidden;

    border-radius:28px;

    background:
            rgba(255,255,255,.05);

    border:
            1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);

    transition:.35s;
}

.ground-card:hover{

    transform:
            translateY(-10px);

    border-color:#2563eb;

    box-shadow:
            0 25px 45px rgba(0,0,0,.35);
}

/*==================================
IMAGE
==================================*/

.ground-image{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.4s;
}

.ground-card:hover .ground-image{

    transform:scale(1.08);
}

/*==================================
CONTENT
==================================*/

.ground-content{

    padding:28px;
}

.ground-top{

    display:flex;

    justify-content:space-between;

    margin-bottom:20px;
}

.rating{

    color:#FFD54F;

    font-weight:700;
}

.available{

    padding:6px 14px;

    border-radius:20px;

    font-size:12px;

    color:#fff;

    background:#16a34a;
}

.ground-content h3{

    color:#fff;

    margin-bottom:12px;

    font-size:26px;
}

.location{

    color:#c7d8f7;

    margin-bottom:22px;
}

.price{

    font-size:38px;

    color:#4ea1ff;

    font-weight:800;

    margin-bottom:25px;
}

.price span{

    color:#d7e4ff;

    font-size:18px;

    font-weight:400;
}

/*==================================
FACILITIES
==================================*/

.facility-list{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-bottom:30px;
}

.facility-list span{

    padding:10px 14px;

    border-radius:25px;

    color:#d7e4ff;

    font-size:14px;

    background:
            rgba(255,255,255,.05);
}

/*==================================
BUTTONS
==================================*/

.ground-buttons{

    display:flex;

    gap:15px;
}

.ground-buttons a{

    flex:1;

    text-align:center;

    text-decoration:none;

    padding:15px;

    border-radius:14px;

    color:#fff;

    font-weight:600;

    background:
            rgba(255,255,255,.05);

    transition:.3s;
}

.book-btn{

    background:
            linear-gradient(
                    135deg,
                    #2563eb,
                    #06b6d4
            ) !important;
}

.ground-buttons a:hover{

    transform:translateY(-3px);

    color:#fff;
}
/*==================================
PAGINATION
==================================*/

.pagination{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:70px;

    flex-wrap:wrap;
}

.pagination a{

    width:48px;
    height:48px;

    display:flex;

    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#fff;

    border-radius:14px;

    background:
            rgba(255,255,255,.05);

    border:
            1px solid rgba(255,255,255,.08);

    transition:.3s;
}

.pagination a:hover{

    background:
            linear-gradient(
                    135deg,
                    #2563eb,
                    #06b6d4
            );

    transform:translateY(-3px);
}

.pagination .active{

    background:
            linear-gradient(
                    135deg,
                    #2563eb,
                    #06b6d4
            );

    box-shadow:
            0 12px 25px rgba(37,99,235,.35);
}


/*==================================
WHY BOOK
==================================*/

.why-book{

    padding:110px 0;

    background:#031633;
}

.section-title{

    text-align:center;

    margin-bottom:60px;
}

.section-title h2{

    color:#fff;

    font-size:48px;

    margin-bottom:15px;

    font-weight:800;
}

.section-title p{

    color:#c8d7f5;

    max-width:700px;

    margin:auto;
}

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;
}

.why-card{

    text-align:center;

    padding:40px 30px;

    border-radius:28px;

    background:
            rgba(255,255,255,.05);

    border:
            1px solid rgba(255,255,255,.08);

    transition:.35s;
}

.why-card:hover{

    transform:translateY(-8px);

    background:
            rgba(37,99,235,.15);
}

.why-card i{

    width:80px;
    height:80px;

    margin:auto;

    display:flex;

    align-items:center;
    justify-content:center;

    border-radius:50%;

    font-size:34px;

    color:#fff;

    background:
            linear-gradient(
                    135deg,
                    #2563eb,
                    #06b6d4
            );

    margin-bottom:25px;
}

.why-card h3{

    color:#fff;

    margin-bottom:15px;

    font-size:24px;
}

.why-card p{

    color:#c7d8f7;

    line-height:1.8;
}

/*==================================
CTA
==================================*/

.ground-cta{

    padding:120px 0;

    background:#02132d;

    position:relative;

    overflow:hidden;
}

.ground-cta::before{

    content:"";

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:#2563eb;

    filter:blur(200px);

    opacity:.15;

    top:-150px;
    left:-150px;
}

.ground-cta::after{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:#06b6d4;

    filter:blur(180px);

    opacity:.15;

    right:-120px;
    bottom:-120px;
}

.cta-card{

    position:relative;

    z-index:2;

    text-align:center;

    padding:70px;

    border-radius:32px;

    background:
            rgba(255,255,255,.05);

    border:
            1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.cta-card h2{

    color:#fff;

    font-size:52px;

    margin-bottom:20px;

    font-weight:800;
}

.cta-card p{

    color:#d7e4ff;

    max-width:700px;

    margin:auto;

    line-height:1.9;

    margin-bottom:40px;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{

    padding:17px 36px;

    border-radius:50px;

    text-decoration:none;

    color:#fff;

    font-weight:700;

    transition:.35s;
}

.primary-btn{

    background:
            linear-gradient(
                    135deg,
                    #2563eb,
                    #06b6d4
            );

    box-shadow:
            0 18px 35px rgba(37,99,235,.35);
}

.primary-btn:hover{

    transform:translateY(-4px);

    color:#fff;
}

.secondary-btn{

    border:
            1px solid rgba(255,255,255,.15);

    background:
            rgba(255,255,255,.05);
}

.secondary-btn:hover{

    background:
            rgba(255,255,255,.08);

    color:#fff;

    transform:translateY(-4px);
}

/*==================================
CUSTOM SCROLLBAR
==================================*/

::-webkit-scrollbar{

    width:10px;
}

::-webkit-scrollbar-track{

    background:#02132d;
}

::-webkit-scrollbar-thumb{

    background:
            linear-gradient(
                    #2563eb,
                    #06b6d4
            );

    border-radius:30px;
}

/*==================================
RESPONSIVE
==================================*/

@media(max-width:1200px){

    .ground-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .why-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

}

@media(max-width:991px){

    .ground-grid{

        grid-template-columns:1fr;
    }

    .ground-search{

        flex-direction:column;
    }

    .ground-search button{

        height:58px;
    }

    .ground-hero{

        height:280px;
    }

    .ground-hero h1{

        font-size:44px;
    }

    .section-title h2{

        font-size:38px;
    }

    .cta-card{

        padding:45px 30px;
    }

    .cta-card h2{

        font-size:36px;
    }

}

@media(max-width:576px){

    .ground-hero{

        height:230px;
    }

    .ground-hero h1{

        font-size:34px;
    }

    .ground-filters{

        justify-content:center;
    }

    .ground-filters button{

        flex:1 1 calc(50% - 10px);
    }

    .ground-buttons{

        flex-direction:column;
    }

    .why-grid{

        grid-template-columns:1fr;
    }

    .cta-card h2{

        font-size:30px;
    }

    .cta-card{

        padding:35px 20px;
    }

}