.tp-section {
    padding: 60px 0;
    background-color: #f4f7f9;
    font-family: 'Poppins', sans-serif;
}

.tp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.tp-header {
    text-align: center;
    margin-bottom: 40px;
}

.tp-header h2 {
    color: #0b1c39;
    font-size: 28px;
}

.tp-header h2 span {
    color: #df0617;
}


.tp-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px;
}

.tp-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.tp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(11, 28, 57, 0.15);
    border-color: #df0617;
}

.tp-img-box {
    position: relative;
    height: 160px;
    background: #ddd;
    overflow: hidden;
}

.tp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tp-card:hover .tp-img-box img {
    transform: scale(1.1);
}

.tp-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #df0617;
    color: #fff;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
}

.tp-content {
    padding: 15px;
    flex-grow: 1;
}

.tp-content h3 {
    font-size: 16px;
    color: #0b1c39;
    margin-bottom: 10px;
}

.tp-info {
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.tp-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.tp-list li {
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
}

.tp-list li::before {
    content: "✓";
    color: #28a745;
    margin-right: 8px;
    font-weight: bold;
}

.tp-btns {
    display: flex;
    gap: 8px;
}

.tp-view, .tp-book {
    flex: 1;
    text-align: center;
    padding: 8px 2px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

.tp-view {
    border: 1px solid #0b1c39;
    color: #0b1c39;
}

.tp-view:hover {
    background: #0b1c39;
    color: #fff;
}

.tp-book {
    background: #0b1c39;
    color: #fff;
}

.tp-book:hover {
    background: #df0617;
    transform: scale(1.02);
    transition: 0.3s;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .tp-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
    .tp-grid { grid-template-columns: 1fr !important; }
}