:root {
    --t-orange: #ff5722;
    --t-blue: #352009;
    --t-gray: #64748b;
    --t-bg-light: #fdfbf7;
    --t-border: #e2e8f0;
    --t-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.tour-section-custom {
    padding: 80px 0;
    background-color: var(--t-bg-light);
    font-family: 'Poppins', sans-serif;
}

.tour-container-custom {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.tour-header-custom {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 50px;

}

.tour-main-title {
    font-size: 42px;
    color: var(--t-blue);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.tour-subtitle {
    font-size: 16px;
    color: var(--t-orange);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.5;
    text-transform: uppercase;
}

.tour-grid-custom {
    margin-bottom: 40px;
}

.tour-card-item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--t-border);
    height: 500px;
    width: 350px !important;
}

.tour-card-item:hover {
    box-shadow: var(--t-shadow);
}

.tour-image-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tour-card-item:hover .tour-main-img {
    transform: scale(1.1);
}

.tour-badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--t-orange);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 2;
}

.tour-wishlist-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--t-blue);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    z-index: 2;
}

.tour-card-item:hover .tour-wishlist-btn {
    opacity: 1;
    transform: scale(1);
}

.tour-media-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: 0.3s ease;
}

.tour-card-item:hover .tour-media-overlay {
    opacity: 1;
}

.media-icon-item {
    background: rgba(255, 255, 255, 0.9);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--t-blue);
}

.tour-info-box {
    padding: 20px;
}

.tour-rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.tour-stars i {
    color: #facc15;
    font-size: 13px;
}

.tour-reviews {
    font-size: 12px;
    color: var(--t-gray);
}

.tour-card-title {
    margin-bottom: 10px;
    height: 47px;
    align-content: center;

}

.tour-card-title a {
    font-size: 20px;
    color: var(--t-blue);
    text-decoration: none;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.tour-card-title a:hover {
    color: var(--t-orange);
}

.tour-meta-data {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: var(--t-gray);
    margin-bottom: 18px;
    border-bottom: 1px dashed var(--t-border);
    padding-bottom: 12px;
}

.meta-item i {
    color: var(--t-orange);
    margin-right: 4px;
}

.tour-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-from-label {
    font-size: 11px;
    color: var(--t-gray);
    display: block;
    margin-bottom: 2px;
}

.price-amount {
    font-size: 26px;
    font-weight: 800;
    color: var(--t-orange);
    line-height: 1;
}

.price-suffix {
    font-size: 12px;
    color: var(--t-gray);
    font-weight: 400;
}

.tour-btn-book {
    padding: 10px 22px;
    border: 1px solid var(--t-orange);
    border-radius: 50px;
    color: var(--t-orange);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.tour-btn-book:hover {
    background: var(--t-orange);
    color: white;
}

.tour-footer-action {
    text-align: center;
    margin-top: 20px;
}

.tour-btn-more {
    display: inline-block;
    padding: 14px 40px;
    color: var(--t-blue);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
}

.tour-btn-more:hover {
    transform: scale(1.05);
    color: var(--t-orange);
}

@media (max-width: 1280px) {
    .tour-container-custom {
        max-width: 760px;

    }
}

@media (max-width: 768px) {
    .tour-container-custom {
        max-width: 320px;
        padding: 0px;

    }

    .tour-card-item {

        height: 500px;
        width: 320px !important;
    }

    .tour-main-title {
        font-size: 1.8rem;
    }

    .tour-btn-more {
        padding: 10px 25px;
    }
}