*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#0f172a;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.section{
    padding:110px 0;
}

.container{
    position:relative;
    z-index:2;
}

/* NAVBAR */

.navbar{
    padding:22px 0;
    transition:.4s;
    background:transparent;
    z-index:9999999;
}

.navbar.scrolled{
    background:#fff;
    box-shadow:0 10px 40px rgba(15,23,42,.08);
    padding:14px 0;
}

.navbar-brand{
    color:#fff;
    font-size:32px;
    font-weight:800;
}

.navbar.scrolled .navbar-brand{
    color:#111827;
}

.nav-link{
    /*color:#fff;*/
    margin-left:18px;
    font-weight:500;
    transition:.3s;
}

.navbar.scrolled .nav-link{
    color:#111827;
}

.nav-link:hover{
    color:#ff6b35;
}

/* HERO */

.hero{
    position:relative;
    min-height:100vh;
    background:
    linear-gradient(rgba(15,23,42,.75),rgba(15,23,42,.75)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600');
    background-size:cover;
    background-position:center;
    padding:140px 0 200px;
    overflow:visible !important;
}

.hero-shape{
    position:absolute;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.hero-shape-1{
    width:420px;
    height:420px;
    top:-120px;
    right:-120px;
}

.hero-shape-2{
    width:260px;
    height:260px;
    bottom:-80px;
    left:-80px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 26px;
    border-radius:60px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(14px);
    color:#fff;
    font-weight:600;
}

.hero-title{
    font-size:72px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    margin:28px 0;
}

.hero-desc{
    font-size:19px;
    line-height:1.9;
    color:rgba(255,255,255,.82);
    max-width:650px;
}

.hero-btns{
    display:flex;
    gap:18px;
    margin-top:35px;
}

.btn-main{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:60px;
    background:#ff6b35;
    color:#fff;
    font-weight:600;
    transition:.4s;
}

.btn-main:hover{
    transform:translateY(-4px);
    background:#ff4d12;
    color:#fff;
}

.btn-light-custom{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:60px;
    background:#fff;
    color:#111827;
    font-weight:600;
}

.btn-light-custom:hover{
    color:#111827;
}

/* HERO IMAGE */

.hero-image-wrap{
    position:relative;
}

.hero-main-image{
    border-radius:35px;
    box-shadow:0 25px 80px rgba(0,0,0,.35);
}

.floating-card{
    position:absolute;
    background:#fff;
    border-radius:24px;
    padding:18px 22px;
    box-shadow:0 15px 40px rgba(15,23,42,.12);
    animation:float 3s ease-in-out infinite;
}

.floating-card h6{
    margin:0;
    font-weight:700;
}

.floating-card p{
    margin:0;
    color:#64748b;
    font-size:14px;
}

.floating-card-1{
    top:30px;
    left:-40px;
}

.floating-card-2{
    right:-40px;
    bottom:40px;
}

.floating-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff1eb;
    color:#ff6b35;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

/* SEARCH */

.hero-search-wrapper{
    position:absolute;
    bottom:-70px;
    left:0;
    width:100%;
    z-index:10;
}

.premium-search{
    background:#fff;
    border-radius:35px;
    padding:35px;
    box-shadow:0 25px 60px rgba(15,23,42,.12);
}

.search-label{
    display:block;
    font-weight:600;
    margin-bottom:14px;
}

.search-box{
    position:relative;
}

.search-box i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#94a3b8;
    z-index:2;
}

.search-control{
    width:100%;
    height:62px;
    border-radius:18px;
    border:1px solid #e2e8f0;
    padding:0 18px 0 50px;
    outline:none;
}

.travel-select{
    width:100%;
}

.search-btn{
    width:65px;
    height:65px;
    border:none;
    border-radius:22px;
    background:#ff6b35;
    color:#fff;
    font-size:22px;
    transition:.3s;
}

.search-btn:hover{
    transform:translateY(-4px);
}

/* SECTION */

.section-title{
    margin-bottom:60px;
}

.subtitle{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:#fff1eb;
    color:#ff6b35;
    font-weight:600;
    margin-bottom:22px;
}

.section-title h2{
    font-size:52px;
    font-weight:800;
    margin-bottom:18px;
}

.section-title p{
    color:#64748b;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* TRIP CARD */

.trip-card{
    background:#fff;
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 10px 45px rgba(15,23,42,.06);
    transition:.4s;
    height:100%;
}

.trip-card:hover{
    transform:translateY(-10px);
}

.trip-img-wrap{
    position:relative;
    overflow:hidden;
}

.trip-img-wrap img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:1s;
}

.trip-card:hover img{
    transform:scale(1.1);
}

.trip-badge{
    position:absolute;
    top:20px;
    left:20px;
    background:#ff6b35;
    color:#fff;
    padding:8px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.trip-content{
    padding:30px;
}

.trip-meta{
    display:flex;
    justify-content:space-between;
    margin-bottom:20px;
    color:#64748b;
}

.trip-content h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:16px;
}

.trip-content p{
    color:#64748b;
    line-height:1.8;
}

.trip-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:30px;
}

.trip-price{
    font-size:30px;
    font-weight:800;
    color:#ff6b35;
}




/* =========================
   FOOTER
========================= */

.footer-modern{

    position:relative;

    background:#0f172a;

    padding:100px 0 30px;

    overflow:hidden;
}

/* TOP BORDER GLOW */

.footer-modern::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,107,53,.7),
        transparent
    );
}

/* LOGO */

.footer-logo{

    display:inline-block;

    font-size:38px;

    font-weight:800;

    color:#fff;

    text-decoration:none;

    margin-bottom:22px;

    transition:.3s ease;
}

.footer-logo:hover{

    color:#ff6b35;
}

/* TEXT */

.footer-text{

    color:rgba(255,255,255,.65);

    line-height:1.9;

    margin-bottom:30px;

    max-width:360px;
}

/* TITLE */

.footer-widget h4{

    position:relative;

    font-size:22px;

    font-weight:700;

    color:#fff;

    margin-bottom:30px;

    padding-bottom:14px;
}

.footer-widget h4::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:55px;
    height:3px;

    border-radius:20px;

    background:#ff6b35;
}

/* LINKS */

.footer-links{

    list-style:none;

    margin:0;
    padding:0;
}

.footer-links li{

    margin-bottom:16px;
}

.footer-links li a{

    position:relative;

    color:rgba(255,255,255,.65);

    text-decoration:none;

    transition:.35s ease;

    padding-left:0;
}

.footer-links li a:hover{

    color:#fff;

    padding-left:8px;
}

/* SOCIAL */

.footer-social{

    display:flex;

    align-items:center;

    gap:14px;
}

.footer-social a{

    width:46px;
    height:46px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:18px;

    text-decoration:none;

    transition:.35s ease;
}

.footer-social a:hover{

    background:#ff6b35;

    transform:
    translateY(-4px)
    scale(1.05);
}

/* CONTACT */

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:20px;
}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:15px;
}

.contact-item i{

    width:46px;
    height:46px;

    min-width:46px;

    border-radius:14px;

    background:rgba(255,255,255,.06);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ff6b35;

    font-size:18px;
}

.contact-item span{

    color:rgba(255,255,255,.65);

    line-height:1.8;
}

/* BOTTOM */

.footer-bottom{

    margin-top:70px;

    padding-top:28px;

    border-top:
    1px solid rgba(255,255,255,.08);

    text-align:center;
}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.55);

    font-size:15px;
}

/* HOVER ANIMATION */

.footer-widget{

    transition:.35s ease;
}

.footer-widget:hover{

    transform:translateY(-4px);
}

/* MOBILE */

@media(max-width:991px){

    .footer-modern{

        padding:80px 0 30px;
    }
}

@media(max-width:767px){

    .footer-logo{

        font-size:32px;
    }

    .footer-widget h4{

        font-size:20px;
    }

    .footer-bottom{

        margin-top:50px;
    }
}




/* DESTINATION */

.destination-modern{
    background:#f8fafc;
}

.destination-modern-card{
    position:relative;
    overflow:hidden;
    border-radius:35px;
    min-height:320px;
    box-shadow:0 15px 50px rgba(15,23,42,.08);
}

.destination-modern-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.destination-modern-card:hover img{
    transform:scale(1.1);
}

.large-card{
    min-height:660px;
}

.small-card{
    min-height:320px;
}

.destination-modern-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,rgba(0,0,0,.9),rgba(0,0,0,.1));
    display:flex;
    align-items:flex-end;
    padding:30px;
}

.destination-content-wrap{
    width:100%;
    color:#fff;
}

.destination-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border-radius:50px;
    margin-bottom:18px;
    font-size:13px;
    font-weight:600;
}

.destination-content-wrap h3{
    font-size:38px;
    font-weight:800;
    margin-bottom:14px;
}

.small-card h3{
    font-size:26px;
}

.destination-content-wrap p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
}

.destination-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-top:25px;
}

.destination-price{
    font-size:28px;
    font-weight:800;
}

.btn-destination{
    padding:12px 24px;
    border-radius:50px;
    background:#fff;
    color:#111827;
    font-weight:600;
}

/* SERVICE */

.service-card{
    background:#fff;
    padding:45px 35px;
    border-radius:32px;
    text-align:center;
    box-shadow:0 10px 40px rgba(15,23,42,.06);
    transition:.4s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-icon{
    width:90px;
    height:90px;
    margin:auto auto 30px;
    border-radius:50%;
    background:#fff1eb;
    color:#ff6b35;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
}

.service-card h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:18px;
}

.service-card p{
    color:#64748b;
    line-height:1.8;
}

/* COUNTER */

.counter-section{
    background:#0f172a;
    padding:100px 0;
}

.counter-box{
    background:rgba(255,255,255,.05);
    padding:45px 25px;
    border-radius:30px;
}

.counter-box h2{
    color:#fff;
    font-size:56px;
    font-weight:800;
}

.counter-box p{
    color:#cbd5e1;
    margin:0;
}

/* CTA */

.cta{
    background:linear-gradient(135deg,#ff6b35,#ff8c42);
    border-radius:40px;
    padding:90px 40px;
    text-align:center;
    color:#fff;
}

.cta h2{
    font-size:54px;
    font-weight:800;
    margin-bottom:20px;
}

.cta p{
    font-size:18px;
    margin-bottom:35px;
}

/* FOOTER */

footer{
    background:#0f172a;
    padding:100px 0 40px;
    color:#fff;
}

.footer-title{
    font-size:36px;
    font-weight:800;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color:#cbd5e1;
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero{
        padding:140px 0 260px;
    }

    .hero-title{
        font-size:48px;
    }

    .hero-image-wrap{
        margin-top:60px;
    }

    .floating-card{
        display:none;
    }

    .premium-search{
        border-radius:25px;
    }

    .large-card{
        min-height:420px;
    }

    .section-title h2{
        font-size:38px;
    }

    .cta h2{
        font-size:38px;
    }

}

@media(max-width:767px){

    .hero-title{
        font-size:38px;
    }

    .hero-btns{
        flex-direction:column;
    }

    .section{
        padding:80px 0;
    }

    .premium-search{
        padding:25px;
    }

    .trip-footer{
        flex-direction:column;
        gap:20px;
        align-items:flex-start;
    }

}

.hero-search-wrapper{
    position:absolute;
    bottom:-80px;
    left:0;
    width:100%;
    z-index:9999;
}

.premium-search{
    position:relative;
    z-index:9999;
}

#featured-trips{
    position:relative;
    z-index:1;
    padding-top:160px;
}

.section{
    position:relative;
    z-index:1;
}


/* HERO */

.trip-modern-hero{
    padding:170px 0 100px;
    background:
    linear-gradient(rgba(15,23,42,.82),rgba(15,23,42,.82)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600');
    background-size:cover;
    background-position:center;
}

.trip-hero-badge{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    color:#fff;
    margin-bottom:24px;
}

.trip-hero-title{
    font-size:64px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
}

.trip-hero-desc{
    max-width:760px;
    margin:auto;
    color:rgba(255,255,255,.82);
    line-height:1.9;
}

/* WRAPPER */

.trip-plugin-wrapper{
    padding:100px 0;
    background:#f8fafc;
}

/* FILTER */

.wp-travel-engine-archive-filters,
.wte-trip-filters{
    background:#fff;
    padding:30px;
    border-radius:28px;
    box-shadow:0 10px 40px rgba(15,23,42,.06);
}

/* CARD */

.trip-content-area article,
.wte-trip-post{
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(15,23,42,.06);
    transition:.4s;
}

.trip-content-area article:hover,
.wte-trip-post:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.trip-content-area img,
.wte-trip-post img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* CONTENT */

.trip-content-area .entry-content,
.wte-trip-post .trip-content{
    padding:28px;
}

/* BUTTON */

.wp-travel-engine-btn,
.wte-btn{
    background:#ff6b35 !important;
    border:none !important;
    border-radius:50px !important;
    padding:14px 26px !important;
    color:#fff !important;
}

/* =========================================
PAGE HERO
========================================= */

.page-hero{
    position:relative;
    padding:170px 0 120px;
    background:
    linear-gradient(rgba(15,23,42,.82),rgba(15,23,42,.82)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?q=80&w=1600');
    background-size:cover;
    background-position:center;
}

.page-overlay{
    position:absolute;
    inset:0;
}

.page-badge{
    display:inline-block;
    padding:12px 24px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border-radius:50px;
    color:#fff;
    font-weight:600;
    margin-bottom:28px;
}

.page-title{
    font-size:64px;
    font-weight:800;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
}

.breadcrumb-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    color:rgba(255,255,255,.8);
}

.breadcrumb-wrap a{
    color:#fff;
    transition:.3s;
}

.breadcrumb-wrap a:hover{
    color:#ff6b35;
}

/* =========================================
PAGE CONTENT
========================================= */
/* =========================================
PAGE SECTION
========================================= */

.page-section{
    padding: 100px 0;
    background: #f8fafc;
}

/* =========================================
CARD FIX (MAIN ISSUE SOLVED HERE)
========================================= */

.page-card{
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden; /* keeps image inside */
    box-shadow: 0 15px 60px rgba(15,23,42,.08);
    display: flex;
    flex-direction: column;
}

/* =========================================
FEATURE IMAGE (NO OVERFLOW + RESPONSIVE)
========================================= */

.page-featured-image{
    width: 100%;
    max-height: 420px;
    overflow: hidden;
}

.page-featured-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
CONTENT (IMPORTANT FIX - NO HIDE)
========================================= */

.page-content{
    padding: 40px;
    font-size: 16px;
    line-height: 1.8;
    color: #334155;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix for WordPress content elements */
.page-content img,
.page-content iframe,
.page-content table{
    max-width: 100%;
    height: auto;
}

/* Prevent long text overflow */
.page-content *{
    max-width: 100%;
}

/* =========================================
MOBILE FIX
========================================= */

@media (max-width: 768px){
    .page-content{
        padding: 20px;
    }

    .page-section{
        padding: 60px 0;
    }

    .page-featured-image{
        max-height: 260px;
    }
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px){

    .page-title{
        font-size:46px;
    }

    .page-content{
        padding:40px;
    }

}

@media(max-width:767px){

    .page-hero{
        padding:140px 0 90px;
    }

    .page-title{
        font-size:36px;
    }

    .page-content{
        padding:28px;
    }

    .page-content h2{
        font-size:30px;
    }

}


/* SAME HEIGHT */

.form-control,
.form-select{

    height:64px;

    border:1px solid #e2e8f0;

    font-size:15px;

    font-weight:500;
}

/* FOCUS */

.form-control:focus,
.form-select:focus{

    border-color:#ff6b35;

    box-shadow:
    0 0 0 4px rgba(255,107,53,.10);
}

/* BUTTON */

.search-btn{

    height:64px;

    background:#ff6b35;

    border:none;

    color:#fff;

    font-size:22px;

    transition:.35s ease;
}

.search-btn:hover{

    background:#0f172a;

    color:#fff;

    transform:translateY(-2px);
}

/* =========================
   NAVBAR
========================= */

.navbar{
    padding:20px 0;
    transition:.4s ease;
    z-index:99999999;
}

.navbar-brand{
    font-size:34px;
    font-weight:800;
    color:#fff !important;
}

.navbar .nav-link{
    color:#fff;
    font-weight:600;
    padding:12px 18px !important;
    transition:.3s ease;
    position:relative;
}

/* HOVER */

.navbar .nav-link:hover{
    color:#ff6b35 !important;
}

/* =========================
   DROPDOWN
========================= */




/* FORCE DROPDOWN TEXT COLOR */

.navbar .dropdown-menu .dropdown-item,
.navbar .dropdown-menu li a{

    color:#0f172a !important;
}

/* HOVER */

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu li a:hover{

    color:#ff6b35 !important;

    background:#f8fafc;
}

/* DROPDOWN BG */

.navbar .dropdown-menu{

    background:#fff !important;
}


.navbar .dropdown{
    position:relative;
}



.navbar .dropdown-menu{

    display:block;

    opacity:0;
    visibility:hidden;

    pointer-events:none;

    transform:
    translateY(15px)
    scale(.98);

    transition:
    opacity .35s ease,
    transform .35s ease,
    visibility .35s ease;

    margin-top:0;

    border:none;

    border-radius:24px;

    min-width:280px;

    padding:16px 0;

    background:#fff;

    box-shadow:
    0 20px 60px rgba(15,23,42,.12);

    overflow:hidden;
}

/* DESKTOP HOVER */

@media(min-width:992px){

    .navbar .dropdown:hover .dropdown-menu{

        opacity:1;
        visibility:visible;

        pointer-events:auto;

        transform:
        translateY(0)
        scale(1);
    }
}

/* ITEMS */

.navbar .dropdown-menu .dropdown-item{

    padding:14px 26px;

    font-size:15px;

    font-weight:500;

    color:#0f172a;

    transition:all .3s ease;
}

/* ITEM HOVER */

.navbar .dropdown-menu .dropdown-item:hover{

    background:#f8fafc;

    color:#ff6b35;

    padding-left:34px;
}

/* ARROW */

.navbar .dropdown-toggle::after{

    transition:.3s ease;
}

/* ARROW ROTATE */

@media(min-width:992px){

    .navbar .dropdown:hover .dropdown-toggle::after{

        transform:rotate(180deg);
    }
}

/* MOBILE */

@media(max-width:991px){

    .navbar-collapse{

        background:#fff;

        padding:20px;

        border-radius:20px;

        margin-top:15px;
    }

    .navbar .nav-link{

        color:#0f172a !important;
    }

    .navbar .dropdown-menu{

        opacity:1;
        visibility:visible;

        transform:none;

        display:none;

        box-shadow:none;

        padding-left:15px;

        background:transparent;
    }

    .navbar .dropdown-menu.show{
        display:block;
    }
}


/* DEFAULT NAVBAR */

.navbar{
    padding:20px 0;
    transition:.4s ease;

    background:transparent;
}

/* SCROLLED NAVBAR */

.navbar.scrolled{

    background:#fff;

    padding:14px 0;

    box-shadow:
    0 10px 40px rgba(15,23,42,.08);
}

/* MENU COLOR */

.navbar.scrolled .nav-link{

    color:#0f172a !important;
}

/* LOGO COLOR */

.navbar.scrolled .navbar-brand{

    color:#0f172a !important;
}

/* ACTIVE/HOVER */

.navbar.scrolled .nav-link:hover{

    color:#ff6b35 !important;
}



/* =========================
   DESTINATION MODERN
========================= */

.destination-modern{
    padding:120px 0;
    background:#f8fafc;
}

.section-title{
    max-width:760px;
    margin:0 auto 70px;
}

.section-title .subtitle{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:#ffe7dd;

    color:#ff6b35;

    font-weight:600;

    margin-bottom:20px;
}

.section-title h2{

    font-size:54px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:20px;
}

.section-title p{

    color:#64748b;

    line-height:1.9;
}

/* GRID */

.destination-grid{

    display:grid;

    grid-template-columns:
    1.2fr 1fr;

    gap:24px;
}

/* RIGHT GRID */

.destination-small-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:24px;
}

/* CARD */

.destination-card-modern{

    position:relative;

    overflow:hidden;

    border-radius:32px;

    height:100%;

    min-height:300px;

    transition:.5s ease;
}

/* LARGE */

.destination-large .destination-card-modern{
    min-height:624px;
}

/* IMAGE */

.destination-card-modern img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .7s ease;
}

/* OVERLAY */

.destination-overlay{

    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(15,23,42,.95),
        rgba(15,23,42,.15)
    );
}

/* CONTENT */

.destination-content{

    position:absolute;

    left:30px;
    right:30px;
    bottom:30px;

    z-index:2;
}

/* COUNT */

.destination-count{

    display:inline-block;

    padding:8px 16px;

    border-radius:50px;

    background:rgba(255,255,255,.16);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:13px;

    margin-bottom:18px;
}

/* TITLE */

.destination-content h3{

    font-size:38px;

    font-weight:800;

    color:#fff;

    margin-bottom:14px;
}

.destination-small h3{
    font-size:28px;
}

/* TEXT */

.destination-content p{

    color:rgba(255,255,255,.82);

    line-height:1.8;

    margin-bottom:24px;
}

/* BUTTON */

.destination-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 26px;

    border-radius:50px;

    background:#fff;

    color:#0f172a;

    text-decoration:none;

    font-weight:700;

    transition:.35s ease;
}

.destination-btn:hover{

    background:#ff6b35;

    color:#fff;

    transform:translateY(-3px);
}

/* HOVER */

.destination-card-modern:hover{

    transform:translateY(-10px);
}

.destination-card-modern:hover img{

    transform:scale(1.08);
}

/* MOBILE */

@media(max-width:991px){

    .destination-grid{

        grid-template-columns:1fr;
    }

    .destination-large .destination-card-modern{

        min-height:420px;
    }
}

@media(max-width:767px){

    .destination-small-grid{

        grid-template-columns:1fr;
    }

    .section-title h2{

        font-size:38px;
    }

    .destination-content{

        left:24px;
        right:24px;
        bottom:24px;
    }
}


/* =========================
   404 PAGE
========================= */

.error-modern{

    min-height:100vh;

    padding:140px 0 100px;

    background:
    linear-gradient(
        135deg,
        #f8fafc 0%,
        #eef2ff 100%
    );

    position:relative;

    overflow:hidden;
}

/* SHAPES */

.error-modern::before,
.error-modern::after{

    content:"";

    position:absolute;

    border-radius:50%;

    filter:blur(80px);

    opacity:.35;
}

.error-modern::before{

    width:300px;
    height:300px;

    background:#ff6b35;

    top:-100px;
    left:-100px;
}

.error-modern::after{

    width:260px;
    height:260px;

    background:#6366f1;

    bottom:-80px;
    right:-80px;
}

/* CARD */

.error-card{

    position:relative;

    background:#fff;

    padding:70px 50px;

    border-radius:40px;

    box-shadow:
    0 25px 80px rgba(15,23,42,.08);

    overflow:hidden;

    z-index:2;
}

/* NUMBER */

.error-number{

    font-size:140px;

    font-weight:900;

    line-height:1;

    background:
    linear-gradient(
        135deg,
        #ff6b35,
        #ff9f43
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

    margin-bottom:20px;
}

/* TITLE */

.error-title{

    font-size:52px;

    font-weight:800;

    color:#0f172a;

    margin-bottom:20px;
}

/* TEXT */

.error-text{

    font-size:17px;

    line-height:1.9;

    color:#64748b;

    max-width:620px;

    margin:0 auto 40px;
}

/* BUTTONS */

.error-actions{

    display:flex;

    align-items:center;
    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;
}

/* BUTTON */

.btn-home,
.btn-trip{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    padding:16px 30px;

    border-radius:60px;

    text-decoration:none;

    font-weight:700;

    transition:.35s ease;
}

/* HOME */

.btn-home{

    background:#ff6b35;

    color:#fff;
}

.btn-home:hover{

    background:#0f172a;

    color:#fff;

    transform:translateY(-3px);
}

/* TRIP */

.btn-trip{

    background:#f1f5f9;

    color:#0f172a;
}

.btn-trip:hover{

    background:#0f172a;

    color:#fff;

    transform:translateY(-3px);
}

/* SEARCH */

.error-search{

    max-width:560px;

    margin:auto;
}

/* WRAP */

.search-wrap{

    position:relative;
}

/* INPUT */

.search-wrap input{

    height:68px;

    border:none;

    border-radius:60px;

    background:#f8fafc;

    padding:0 75px 0 28px;

    font-size:15px;

    box-shadow:
    inset 0 0 0 1px #e2e8f0;
}

/* FOCUS */

.search-wrap input:focus{

    box-shadow:
    inset 0 0 0 2px rgba(255,107,53,.35);
}

/* BUTTON */

.search-wrap button{

    position:absolute;

    right:8px;
    top:8px;

    width:52px;
    height:52px;

    border:none;

    border-radius:50%;

    background:#ff6b35;

    color:#fff;

    font-size:18px;

    transition:.35s ease;
}

.search-wrap button:hover{

    background:#0f172a;
}

/* MOBILE */

@media(max-width:991px){

    .error-card{

        padding:60px 35px;
    }

    .error-number{

        font-size:110px;
    }

    .error-title{

        font-size:42px;
    }
}

@media(max-width:767px){

    .error-modern{

        padding:120px 0 80px;
    }

    .error-card{

        padding:45px 25px;

        border-radius:30px;
    }

    .error-number{

        font-size:90px;
    }

    .error-title{

        font-size:34px;
    }

    .error-text{

        font-size:15px;
    }

    .btn-home,
    .btn-trip{

        width:100%;
    }
}