/*---------------------------------------
  TOUR SECTION
-----------------------------------------*/

.tour-section{
    background:#f5f7fb;
    padding:35px 0;
}

/* TITLE */

.section-title{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:16px;
}

.section-subtitle{
    max-width:650px;
    margin:auto;

    color:#64748b;

    font-size:16px;
    line-height:1.8;
}

/* CARD */

.custom-block{
    background:#fff;

    border-radius:20px;

    padding:14px;

    border:1px solid #e5e7eb;

    box-shadow:
        0 4px 15px rgba(0,0,0,.08);

    transition:all .35s ease;

    height:100%;
}

.custom-block:hover{
    transform:translateY(-8px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.12);
}

/* IMAGE */

.tour-image-wrapper{
    position:relative;
}

.custom-block-image{
    width:100%;
    height:240px;

    object-fit:cover;

    border-radius:16px;

    transition:transform .5s ease;
}

.custom-block:hover .custom-block-image{
    transform:scale(1.03);
}

/* DISCOUNT BADGE */

.tour-badge{
    position:absolute;

    top:0;
    right:0;

    background:#e11d48;

    color:#fff;

    font-size:13px;
    font-weight:700;

    padding:8px 14px;

    border-radius:
        0 16px 0 16px;
}

/* CONTENT */

.tour-content{
    padding:18px 8px 8px;
}

/* META */

.tour-meta{
    color:#64748b;

    font-size:14px;

    margin-bottom:10px;
}

/* TITLE */

.custom-block h5{
    font-size:24px;

    font-weight:700;

    line-height:1.4;

    color:#0f172a;

    margin-bottom:20px;

    min-height:70px;
}

/* PRICE BOX */

.price-box{
    border:1px solid #e2e8f0;

    border-radius:14px;

    padding:16px 18px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;
}

.price-box span{
    color:#64748b;

    font-size:14px;
}

.price-box strong{
    font-size:28px;

    color:#0f172a;

    font-weight:800;
}

/* BUTTONS */

.tour-buttons{
    display:flex;

    gap:12px;
}

/* BUTTON BASE */

.btn-expert,
.btn-detail{
    flex:1;

    text-align:center;

    padding:12px 14px;

    border-radius:10px;

    text-decoration:none;

    font-size:14px;

    font-weight:600;

    transition:all .3s ease;
}

/* BUTTON 1 */

.btn-expert{
    background:#1e3a8a;

    color:#fff;
}

.btn-expert:hover{
    background:#172554;

    color:#fff;
}

/* BUTTON 2 */

.btn-detail{
    background:#14b8a6;

    color:#fff;
}

.btn-detail:hover{
    background:#0f766e;

    color:#fff;
}

/* DESKTOP — 4 kolom */

@media screen and (min-width:992px){

    .tour-section .row.g-4 > [class*="col-"]{
        width:25%;
        flex:0 0 25%;
        max-width:25%;
    }

    .custom-block-image{
        height:200px;
    }

    .custom-block h5{
        font-size:18px;
        min-height:60px;
    }

    .price-box{
        padding:12px 14px;
    }

    .price-box strong{
        font-size:22px;
    }

    .btn-expert,
    .btn-detail{
        padding:10px 10px;
        font-size:13px;
    }

}

/* TABLET */

@media screen and (max-width:991px){

    .section-title{
        font-size:34px;
    }

    .custom-block h5{
        font-size:22px;
    }

    .custom-block-image{
        height:220px;
    }

}

@media screen and (max-width:767px){

    .tour-section{
        padding:70px 0;
    }

    .section-title{
        font-size:28px;
    }

    /* 2 kolom di mobile */
    .tour-section .row.g-4 > [class*="col-"]{
        width:50%;
        flex:0 0 50%;
        max-width:50%;
    }

    .tour-buttons{
        flex-direction:column;
    }

    .custom-block-image{
        height:160px;
    }

    /* Sesuaikan font agar muat di kartu kecil */
    .custom-block h5{
        font-size:14px;
        min-height:auto;
        margin-bottom:12px;
    }

    .price-box{
        padding:10px 12px;
        margin-bottom:12px;
    }

    .price-box strong{
        font-size:18px;
    }

    .price-box span{
        font-size:11px;
    }

    .tour-meta{
        font-size:12px;
    }

    .btn-expert,
    .btn-detail{
        padding:9px 8px;
        font-size:12px;
    }

}