.hero {
    position: relative;
    min-height: 720px;
    background: linear-gradient(90deg, rgba(13, 59, 76, .9), rgba(13, 59, 76, .38)), url('https://images.unsplash.com/photo-1539650116574-8efeb43e2750?w=1800&q=85') center/cover;
    color: #fff;
    display: grid;
    align-items: center;
    overflow: hidden
}

.hero:before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 20%, rgba(215, 181, 154, .32), transparent 28%), linear-gradient(180deg, transparent 72%, var(--sand))
}

.hero .container {
    position: relative;
    z-index: 1
}

.hero-content {
    max-width: 760px;
    padding: 90px 0
}

.hero h1 {
    font-family: var(--heading);
    font-size: clamp(46px, 7vw, 86px);
    line-height: .98;
    margin: 12px 0;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, .88);
    max-width: 650px
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    position: relative;
    z-index: 2;
    margin-top: -68px;
    background: var(--navy);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.trust-item {
    padding: 24px;
    color: #fff;
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, .04)
}

.trust-item i {
    font-size: 24px;
    color: var(--gold)
}

.trust-item strong {
    display: block
}

.trust-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, .72)
}

.tabs-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 16px
}

.tabs-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px
}

.tab-btn {
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--sand);
    padding: 10px 14px;
    font-weight: 900;
    color: var(--navy);
    cursor: pointer
}

.tab-btn.active {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy)
}

.tab-panel {
    display: none
}

.tab-panel.active {
    display: block
}

.popular-layout {
    display: grid;
    grid-template-columns: minmax(280px, .95fr) minmax(0, 1.55fr);
    gap: 22px;
    align-items: stretch
}

.destination-feature {
    min-height: 400px;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft)
}

.destination-feature img,
.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.destination-feature:after,
.destination-card:after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(13, 59, 76, .88))
}

.dest-content {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    color: #fff
}

.dest-content h3 {
    font-family: var(--heading);
    font-size: 28px;
    margin: 0 0 6px
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px
}

.destination-card {
    position: relative;
    max-height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft)
}

.destination-card:hover img,
.destination-feature:hover img {
    transform: scale(1.06)
}

.destination-card img,
.destination-feature img {
    transition: .45s ease
}

.experience-strip {
    background: var(--navy);
    color: #fff
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .16);
    border-radius: 24px;
    overflow: hidden
}

.experience-item {
    padding: 28px;
    background: rgba(255, 255, 255, .04)
}

.experience-item i {
    font-size: 30px;
    color: var(--gold);
    margin-bottom: 14px
}

.experience-item h3 {
    font-family: var(--heading);
    margin: 0 0 6px;
    color: #fff
}

.experience-item p {
    color: rgba(255, 255, 255, .72) !important;
    margin: 0;
    font-size: 14px
}

.experience-item p>* {
    color: rgba(255, 255, 255, .72) !important;
}

.cta-band {
    border-radius: 32px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    padding: 44px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow)
}

.cta-band h2 {
    font-family: var(--heading);
    font-size: 40px;
    margin: 0;
    font-weight: 700;
}

.cta-band p {
    color: rgba(255, 255, 255, .78)
}

/*========================================
         Start Blogs Section
==========================================*/

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px
}

.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: .25s
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover
}

.blog-card div {
    padding: 20px
}

.blog-card h3 {
    font-family: var(--heading);
    color: var(--navy);
    font-size: 24px;
    margin: 12px 0 6px;
    font-weight: 700;
}

.blog-card p {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
    height: calc(1.6 * 3em);
    overflow: hidden;
    text-overflow: ellipsis;
}

/*========================================
         End Blogs Section
==========================================*/

@media(max-width:980px) {
    .hero-trust {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: -34px
    }

    .popular-layout {
        grid-template-columns: 1fr
    }

    .destination-feature {
        min-height: 420px
    }

    .experience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

    .cta-band {
        display: block
    }

    .cta-band .btn {
        margin-top: 18px
    }
}

@media(max-width:640px) {
    .hero {
        min-height: 630px
    }

    .hero-content {
        padding: 70px 0
    }

    .hero h1 {
        font-size: 44px
    }

    .hero-trust,
    .dest-grid,
    .experience-grid {
        grid-template-columns: 1fr
    }

    .hero-trust {
        margin-top: 18px
    }

    .trust-item {
        padding: 18px
    }

    .destination-feature {
        min-height: 380px
    }

    .destination-card {
        min-height: 235px
    }

    .cta-band {
        padding: 28px
    }

    .cta-band h2 {
        font-size: 30px
    }

    .tabs-nav {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .tab-btn {
        font-size: 12px;
        padding: 7px 0;
        min-width: 200px;
        width: auto;
    }

    .experience-item h3 {
        display: inline-block;
    }
}
